]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_typeck/src/check_unused.rs
Rollup merge of #87645 - LeSeulArtichaut:issue-87414, r=oli-obk
[rust.git] / compiler / rustc_typeck / src / check_unused.rs
1 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
2 use rustc_errors::Applicability;
3 use rustc_hir as hir;
4 use rustc_hir::def_id::{DefId, LocalDefId};
5 use rustc_hir::itemlikevisit::ItemLikeVisitor;
6 use rustc_middle::ty::TyCtxt;
7 use rustc_session::lint;
8 use rustc_span::{Span, Symbol};
9
10 pub fn check_crate(tcx: TyCtxt<'_>) {
11     let mut used_trait_imports = FxHashSet::default();
12     for &body_id in tcx.hir().krate().bodies.keys() {
13         let item_def_id = tcx.hir().body_owner_def_id(body_id);
14         let imports = tcx.used_trait_imports(item_def_id);
15         debug!("GatherVisitor: item_def_id={:?} with imports {:#?}", item_def_id, imports);
16         used_trait_imports.extend(imports.iter());
17     }
18
19     let mut visitor = CheckVisitor { tcx, used_trait_imports };
20     tcx.hir().krate().visit_all_item_likes(&mut visitor);
21
22     unused_crates_lint(tcx);
23 }
24
25 impl ItemLikeVisitor<'v> for CheckVisitor<'tcx> {
26     fn visit_item(&mut self, item: &hir::Item<'_>) {
27         if item.vis.node.is_pub() || item.span.is_dummy() {
28             return;
29         }
30         if let hir::ItemKind::Use(ref path, _) = item.kind {
31             self.check_import(item.item_id(), path.span);
32         }
33     }
34
35     fn visit_trait_item(&mut self, _trait_item: &hir::TraitItem<'_>) {}
36
37     fn visit_impl_item(&mut self, _impl_item: &hir::ImplItem<'_>) {}
38
39     fn visit_foreign_item(&mut self, _foreign_item: &hir::ForeignItem<'_>) {}
40 }
41
42 struct CheckVisitor<'tcx> {
43     tcx: TyCtxt<'tcx>,
44     used_trait_imports: FxHashSet<LocalDefId>,
45 }
46
47 impl CheckVisitor<'tcx> {
48     fn check_import(&self, item_id: hir::ItemId, span: Span) {
49         if !self.tcx.maybe_unused_trait_import(item_id.def_id) {
50             return;
51         }
52
53         if self.used_trait_imports.contains(&item_id.def_id) {
54             return;
55         }
56
57         self.tcx.struct_span_lint_hir(
58             lint::builtin::UNUSED_IMPORTS,
59             item_id.hir_id(),
60             span,
61             |lint| {
62                 let msg = if let Ok(snippet) = self.tcx.sess.source_map().span_to_snippet(span) {
63                     format!("unused import: `{}`", snippet)
64                 } else {
65                     "unused import".to_owned()
66                 };
67                 lint.build(&msg).emit();
68             },
69         );
70     }
71 }
72
73 fn unused_crates_lint(tcx: TyCtxt<'_>) {
74     let lint = lint::builtin::UNUSED_EXTERN_CRATES;
75
76     // Collect first the crates that are completely unused.  These we
77     // can always suggest removing (no matter which edition we are
78     // in).
79     let unused_extern_crates: FxHashMap<LocalDefId, Span> = tcx
80         .maybe_unused_extern_crates(())
81         .iter()
82         .filter(|&&(def_id, _)| {
83             // The `def_id` here actually was calculated during resolution (at least
84             // at the time of this writing) and is being shipped to us via a side
85             // channel of the tcx. There may have been extra expansion phases,
86             // however, which ended up removing the `def_id` *after* expansion such
87             // as the `ReplaceBodyWithLoop` pass (which is a bit of a hack, but hey)
88             //
89             // As a result we need to verify that `def_id` is indeed still valid for
90             // our AST and actually present in the HIR map. If it's not there then
91             // there's safely nothing to warn about, and otherwise we carry on with
92             // our execution.
93             //
94             // Note that if we carry through to the `extern_mod_stmt_cnum` query
95             // below it'll cause a panic because `def_id` is actually bogus at this
96             // point in time otherwise.
97             if tcx.hir().find(tcx.hir().local_def_id_to_hir_id(def_id)).is_none() {
98                 return false;
99             }
100             true
101         })
102         .filter(|&&(def_id, _)| {
103             tcx.extern_mod_stmt_cnum(def_id).map_or(true, |cnum| {
104                 !tcx.is_compiler_builtins(cnum)
105                     && !tcx.is_panic_runtime(cnum)
106                     && !tcx.has_global_allocator(cnum)
107                     && !tcx.has_panic_handler(cnum)
108             })
109         })
110         .cloned()
111         .collect();
112
113     // Collect all the extern crates (in a reliable order).
114     let mut crates_to_lint = vec![];
115     tcx.hir().krate().visit_all_item_likes(&mut CollectExternCrateVisitor {
116         crates_to_lint: &mut crates_to_lint,
117     });
118
119     let extern_prelude = &tcx.resolutions(()).extern_prelude;
120
121     for extern_crate in &crates_to_lint {
122         let def_id = extern_crate.def_id.expect_local();
123         let id = tcx.hir().local_def_id_to_hir_id(def_id);
124         let item = tcx.hir().expect_item(id);
125
126         // If the crate is fully unused, we suggest removing it altogether.
127         // We do this in any edition.
128         if extern_crate.warn_if_unused {
129             if let Some(&span) = unused_extern_crates.get(&def_id) {
130                 tcx.struct_span_lint_hir(lint, id, span, |lint| {
131                     // Removal suggestion span needs to include attributes (Issue #54400)
132                     let span_with_attrs = tcx
133                         .get_attrs(extern_crate.def_id)
134                         .iter()
135                         .map(|attr| attr.span)
136                         .fold(span, |acc, attr_span| acc.to(attr_span));
137
138                     lint.build("unused extern crate")
139                         .span_suggestion_short(
140                             span_with_attrs,
141                             "remove it",
142                             String::new(),
143                             Applicability::MachineApplicable,
144                         )
145                         .emit();
146                 });
147                 continue;
148             }
149         }
150
151         // If we are not in Rust 2018 edition, then we don't make any further
152         // suggestions.
153         if !tcx.sess.rust_2018() {
154             continue;
155         }
156
157         // If the extern crate isn't in the extern prelude,
158         // there is no way it can be written as an `use`.
159         let orig_name = extern_crate.orig_name.unwrap_or(item.ident.name);
160         if !extern_prelude.get(&orig_name).map_or(false, |from_item| !from_item) {
161             continue;
162         }
163
164         // If the extern crate is renamed, then we cannot suggest replacing it with a use as this
165         // would not insert the new name into the prelude, where other imports in the crate may be
166         // expecting it.
167         if extern_crate.orig_name.is_some() {
168             continue;
169         }
170
171         // If the extern crate has any attributes, they may have funky
172         // semantics we can't faithfully represent using `use` (most
173         // notably `#[macro_use]`). Ignore it.
174         if !tcx.get_attrs(extern_crate.def_id).is_empty() {
175             continue;
176         }
177         tcx.struct_span_lint_hir(lint, id, extern_crate.span, |lint| {
178             // Otherwise, we can convert it into a `use` of some kind.
179             let base_replacement = match extern_crate.orig_name {
180                 Some(orig_name) => format!("use {} as {};", orig_name, item.ident.name),
181                 None => format!("use {};", item.ident.name),
182             };
183             let vis = tcx.sess.source_map().span_to_snippet(item.vis.span).unwrap_or_default();
184             let add_vis = |to| if vis.is_empty() { to } else { format!("{} {}", vis, to) };
185             lint.build("`extern crate` is not idiomatic in the new edition")
186                 .span_suggestion_short(
187                     extern_crate.span,
188                     &format!("convert it to a `{}`", add_vis("use".to_string())),
189                     add_vis(base_replacement),
190                     Applicability::MachineApplicable,
191                 )
192                 .emit();
193         })
194     }
195 }
196
197 struct CollectExternCrateVisitor<'a> {
198     crates_to_lint: &'a mut Vec<ExternCrateToLint>,
199 }
200
201 struct ExternCrateToLint {
202     /// `DefId` of the extern crate
203     def_id: DefId,
204
205     /// span from the item
206     span: Span,
207
208     /// if `Some`, then this is renamed (`extern crate orig_name as
209     /// crate_name`), and -- perhaps surprisingly -- this stores the
210     /// *original* name (`item.name` will contain the new name)
211     orig_name: Option<Symbol>,
212
213     /// if `false`, the original name started with `_`, so we shouldn't lint
214     /// about it going unused (but we should still emit idiom lints).
215     warn_if_unused: bool,
216 }
217
218 impl<'a, 'v> ItemLikeVisitor<'v> for CollectExternCrateVisitor<'a> {
219     fn visit_item(&mut self, item: &hir::Item<'_>) {
220         if let hir::ItemKind::ExternCrate(orig_name) = item.kind {
221             self.crates_to_lint.push(ExternCrateToLint {
222                 def_id: item.def_id.to_def_id(),
223                 span: item.span,
224                 orig_name,
225                 warn_if_unused: !item.ident.as_str().starts_with('_'),
226             });
227         }
228     }
229
230     fn visit_trait_item(&mut self, _trait_item: &hir::TraitItem<'_>) {}
231
232     fn visit_impl_item(&mut self, _impl_item: &hir::ImplItem<'_>) {}
233
234     fn visit_foreign_item(&mut self, _foreign_item: &hir::ForeignItem<'_>) {}
235 }