rustc_resolve/
effective_visibilities.rs

1use std::mem;
2
3use rustc_ast::visit::Visitor;
4use rustc_ast::{Crate, EnumDef, ast, visit};
5use rustc_data_structures::fx::FxHashSet;
6use rustc_hir::def_id::{CRATE_DEF_ID, LocalDefId};
7use rustc_middle::middle::privacy::{EffectiveVisibilities, EffectiveVisibility, Level};
8use rustc_middle::ty::Visibility;
9use tracing::info;
10
11use crate::{NameBinding, NameBindingKind, Resolver};
12
13#[derive(Clone, Copy)]
14enum ParentId<'ra> {
15    Def(LocalDefId),
16    Import(NameBinding<'ra>),
17}
18
19impl ParentId<'_> {
20    fn level(self) -> Level {
21        match self {
22            ParentId::Def(_) => Level::Direct,
23            ParentId::Import(_) => Level::Reexported,
24        }
25    }
26}
27
28pub(crate) struct EffectiveVisibilitiesVisitor<'a, 'ra, 'tcx> {
29    r: &'a mut Resolver<'ra, 'tcx>,
30    def_effective_visibilities: EffectiveVisibilities,
31    /// While walking import chains we need to track effective visibilities per-binding, and def id
32    /// keys in `Resolver::effective_visibilities` are not enough for that, because multiple
33    /// bindings can correspond to a single def id in imports. So we keep a separate table.
34    import_effective_visibilities: EffectiveVisibilities<NameBinding<'ra>>,
35    // It's possible to recalculate this at any point, but it's relatively expensive.
36    current_private_vis: Visibility,
37    changed: bool,
38}
39
40impl Resolver<'_, '_> {
41    fn nearest_normal_mod(&self, def_id: LocalDefId) -> LocalDefId {
42        self.get_nearest_non_block_module(def_id.to_def_id()).nearest_parent_mod().expect_local()
43    }
44
45    fn private_vis_import(&self, binding: NameBinding<'_>) -> Visibility {
46        let NameBindingKind::Import { import, .. } = binding.kind else { unreachable!() };
47        Visibility::Restricted(
48            import
49                .id()
50                .map(|id| self.nearest_normal_mod(self.local_def_id(id)))
51                .unwrap_or(CRATE_DEF_ID),
52        )
53    }
54
55    fn private_vis_def(&self, def_id: LocalDefId) -> Visibility {
56        // For mod items `nearest_normal_mod` returns its argument, but we actually need its parent.
57        let normal_mod_id = self.nearest_normal_mod(def_id);
58        if normal_mod_id == def_id {
59            Visibility::Restricted(self.tcx.local_parent(def_id))
60        } else {
61            Visibility::Restricted(normal_mod_id)
62        }
63    }
64}
65
66impl<'a, 'ra, 'tcx> EffectiveVisibilitiesVisitor<'a, 'ra, 'tcx> {
67    /// Fills the `Resolver::effective_visibilities` table with public & exported items
68    /// For now, this doesn't resolve macros (FIXME) and cannot resolve Impl, as we
69    /// need access to a TyCtxt for that. Returns the set of ambiguous re-exports.
70    pub(crate) fn compute_effective_visibilities<'c>(
71        r: &'a mut Resolver<'ra, 'tcx>,
72        krate: &'c Crate,
73    ) -> FxHashSet<NameBinding<'ra>> {
74        let mut visitor = EffectiveVisibilitiesVisitor {
75            r,
76            def_effective_visibilities: Default::default(),
77            import_effective_visibilities: Default::default(),
78            current_private_vis: Visibility::Restricted(CRATE_DEF_ID),
79            changed: true,
80        };
81
82        visitor.def_effective_visibilities.update_root();
83        visitor.set_bindings_effective_visibilities(CRATE_DEF_ID);
84
85        while visitor.changed {
86            visitor.changed = false;
87            visit::walk_crate(&mut visitor, krate);
88        }
89        visitor.r.effective_visibilities = visitor.def_effective_visibilities;
90
91        let mut exported_ambiguities = FxHashSet::default();
92
93        // Update visibilities for import def ids. These are not used during the
94        // `EffectiveVisibilitiesVisitor` pass, because we have more detailed binding-based
95        // information, but are used by later passes. Effective visibility of an import def id
96        // is the maximum value among visibilities of bindings corresponding to that def id.
97        for (binding, eff_vis) in visitor.import_effective_visibilities.iter() {
98            let NameBindingKind::Import { import, .. } = binding.kind else { unreachable!() };
99            if !binding.is_ambiguity_recursive() {
100                if let Some(node_id) = import.id() {
101                    r.effective_visibilities.update_eff_vis(r.local_def_id(node_id), eff_vis, r.tcx)
102                }
103            } else if binding.ambiguity.is_some() && eff_vis.is_public_at_level(Level::Reexported) {
104                exported_ambiguities.insert(*binding);
105            }
106        }
107
108        info!("resolve::effective_visibilities: {:#?}", r.effective_visibilities);
109
110        exported_ambiguities
111    }
112
113    /// Update effective visibilities of bindings in the given module,
114    /// including their whole reexport chains.
115    fn set_bindings_effective_visibilities(&mut self, module_id: LocalDefId) {
116        let module = self.r.expect_module(module_id.to_def_id());
117        for (_, name_resolution) in self.r.resolutions(module).borrow().iter() {
118            let Some(mut binding) = name_resolution.borrow().binding() else {
119                continue;
120            };
121            // Set the given effective visibility level to `Level::Direct` and
122            // sets the rest of the `use` chain to `Level::Reexported` until
123            // we hit the actual exported item.
124            //
125            // If the binding is ambiguous, put the root ambiguity binding and all reexports
126            // leading to it into the table. They are used by the `ambiguous_glob_reexports`
127            // lint. For all bindings added to the table this way `is_ambiguity` returns true.
128            let is_ambiguity =
129                |binding: NameBinding<'ra>, warn: bool| binding.ambiguity.is_some() && !warn;
130            let mut parent_id = ParentId::Def(module_id);
131            let mut warn_ambiguity = binding.warn_ambiguity;
132            while let NameBindingKind::Import { binding: nested_binding, .. } = binding.kind {
133                self.update_import(binding, parent_id);
134
135                if is_ambiguity(binding, warn_ambiguity) {
136                    // Stop at the root ambiguity, further bindings in the chain should not
137                    // be reexported because the root ambiguity blocks any access to them.
138                    // (Those further bindings are most likely not ambiguities themselves.)
139                    break;
140                }
141
142                parent_id = ParentId::Import(binding);
143                binding = nested_binding;
144                warn_ambiguity |= nested_binding.warn_ambiguity;
145            }
146            if !is_ambiguity(binding, warn_ambiguity)
147                && let Some(def_id) = binding.res().opt_def_id().and_then(|id| id.as_local())
148            {
149                self.update_def(def_id, binding.vis.expect_local(), parent_id);
150            }
151        }
152    }
153
154    fn effective_vis_or_private(&mut self, parent_id: ParentId<'ra>) -> EffectiveVisibility {
155        // Private nodes are only added to the table for caching, they could be added or removed at
156        // any moment without consequences, so we don't set `changed` to true when adding them.
157        *match parent_id {
158            ParentId::Def(def_id) => self
159                .def_effective_visibilities
160                .effective_vis_or_private(def_id, || self.r.private_vis_def(def_id)),
161            ParentId::Import(binding) => self
162                .import_effective_visibilities
163                .effective_vis_or_private(binding, || self.r.private_vis_import(binding)),
164        }
165    }
166
167    /// All effective visibilities for a node are larger or equal than private visibility
168    /// for that node (see `check_invariants` in middle/privacy.rs).
169    /// So if either parent or nominal visibility is the same as private visibility, then
170    /// `min(parent_vis, nominal_vis) <= private_vis`, and the update logic is guaranteed
171    /// to not update anything and we can skip it.
172    ///
173    /// We are checking this condition only if the correct value of private visibility is
174    /// cheaply available, otherwise it doesn't make sense performance-wise.
175    ///
176    /// `None` is returned if the update can be skipped,
177    /// and cheap private visibility is returned otherwise.
178    fn may_update(
179        &self,
180        nominal_vis: Visibility,
181        parent_id: ParentId<'_>,
182    ) -> Option<Option<Visibility>> {
183        match parent_id {
184            ParentId::Def(def_id) => (nominal_vis != self.current_private_vis
185                && self.r.tcx.local_visibility(def_id) != self.current_private_vis)
186                .then_some(Some(self.current_private_vis)),
187            ParentId::Import(_) => Some(None),
188        }
189    }
190
191    fn update_import(&mut self, binding: NameBinding<'ra>, parent_id: ParentId<'ra>) {
192        let nominal_vis = binding.vis.expect_local();
193        let Some(cheap_private_vis) = self.may_update(nominal_vis, parent_id) else { return };
194        let inherited_eff_vis = self.effective_vis_or_private(parent_id);
195        let tcx = self.r.tcx;
196        self.changed |= self.import_effective_visibilities.update(
197            binding,
198            Some(nominal_vis),
199            || cheap_private_vis.unwrap_or_else(|| self.r.private_vis_import(binding)),
200            inherited_eff_vis,
201            parent_id.level(),
202            tcx,
203        );
204    }
205
206    fn update_def(
207        &mut self,
208        def_id: LocalDefId,
209        nominal_vis: Visibility,
210        parent_id: ParentId<'ra>,
211    ) {
212        let Some(cheap_private_vis) = self.may_update(nominal_vis, parent_id) else { return };
213        let inherited_eff_vis = self.effective_vis_or_private(parent_id);
214        let tcx = self.r.tcx;
215        self.changed |= self.def_effective_visibilities.update(
216            def_id,
217            Some(nominal_vis),
218            || cheap_private_vis.unwrap_or_else(|| self.r.private_vis_def(def_id)),
219            inherited_eff_vis,
220            parent_id.level(),
221            tcx,
222        );
223    }
224
225    fn update_field(&mut self, def_id: LocalDefId, parent_id: LocalDefId) {
226        self.update_def(def_id, self.r.tcx.local_visibility(def_id), ParentId::Def(parent_id));
227    }
228}
229
230impl<'a, 'ra, 'tcx> Visitor<'a> for EffectiveVisibilitiesVisitor<'a, 'ra, 'tcx> {
231    fn visit_item(&mut self, item: &'a ast::Item) {
232        let def_id = self.r.local_def_id(item.id);
233        // Update effective visibilities of nested items.
234        // If it's a mod, also make the visitor walk all of its items
235        match item.kind {
236            // Resolved in rustc_privacy when types are available
237            ast::ItemKind::Impl(..) => return,
238
239            // Should be unreachable at this stage
240            ast::ItemKind::MacCall(..) | ast::ItemKind::DelegationMac(..) => panic!(
241                "ast::ItemKind::MacCall encountered, this should not anymore appear at this stage"
242            ),
243
244            ast::ItemKind::Mod(..) => {
245                let prev_private_vis =
246                    mem::replace(&mut self.current_private_vis, Visibility::Restricted(def_id));
247                self.set_bindings_effective_visibilities(def_id);
248                visit::walk_item(self, item);
249                self.current_private_vis = prev_private_vis;
250            }
251
252            ast::ItemKind::Enum(_, _, EnumDef { ref variants }) => {
253                self.set_bindings_effective_visibilities(def_id);
254                for variant in variants {
255                    let variant_def_id = self.r.local_def_id(variant.id);
256                    for field in variant.data.fields() {
257                        self.update_field(self.r.local_def_id(field.id), variant_def_id);
258                    }
259                }
260            }
261
262            ast::ItemKind::Struct(_, _, ref def) | ast::ItemKind::Union(_, _, ref def) => {
263                for field in def.fields() {
264                    self.update_field(self.r.local_def_id(field.id), def_id);
265                }
266            }
267
268            ast::ItemKind::Trait(..) => {
269                self.set_bindings_effective_visibilities(def_id);
270            }
271
272            ast::ItemKind::ExternCrate(..)
273            | ast::ItemKind::Use(..)
274            | ast::ItemKind::Static(..)
275            | ast::ItemKind::Const(..)
276            | ast::ItemKind::GlobalAsm(..)
277            | ast::ItemKind::TyAlias(..)
278            | ast::ItemKind::TraitAlias(..)
279            | ast::ItemKind::MacroDef(..)
280            | ast::ItemKind::ForeignMod(..)
281            | ast::ItemKind::Fn(..)
282            | ast::ItemKind::Delegation(..) => return,
283        }
284    }
285}