]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_lint/src/late.rs
Merge commit '1fcc74cc9e03bc91eaa80ecf92976b0b14b3aeb6' into clippyup
[rust.git] / compiler / rustc_lint / src / late.rs
1 //! Implementation of lint checking.
2 //!
3 //! The lint checking is mostly consolidated into one pass which runs
4 //! after all other analyses. Throughout compilation, lint warnings
5 //! can be added via the `add_lint` method on the Session structure. This
6 //! requires a span and an ID of the node that the lint is being added to. The
7 //! lint isn't actually emitted at that time because it is unknown what the
8 //! actual lint level at that location is.
9 //!
10 //! To actually emit lint warnings/errors, a separate pass is used.
11 //! A context keeps track of the current state of all lint levels.
12 //! Upon entering a node of the ast which can modify the lint settings, the
13 //! previous lint state is pushed onto a stack and the ast is then recursed
14 //! upon. As the ast is traversed, this keeps track of the current lint level
15 //! for all lint attributes.
16
17 use crate::{passes::LateLintPassObject, LateContext, LateLintPass, LintStore};
18 use rustc_ast as ast;
19 use rustc_ast::walk_list;
20 use rustc_data_structures::sync::{join, par_iter, ParallelIterator};
21 use rustc_hir as hir;
22 use rustc_hir::def_id::{LocalDefId, LOCAL_CRATE};
23 use rustc_hir::intravisit as hir_visit;
24 use rustc_hir::intravisit::Visitor;
25 use rustc_middle::hir::map::Map;
26 use rustc_middle::ty::{self, TyCtxt};
27 use rustc_session::lint::LintPass;
28 use rustc_span::symbol::Symbol;
29 use rustc_span::Span;
30
31 use std::any::Any;
32 use std::cell::Cell;
33 use std::slice;
34 use tracing::debug;
35
36 /// Extract the `LintStore` from the query context.
37 /// This function exists because we've erased `LintStore` as `dyn Any` in the context.
38 crate fn unerased_lint_store(tcx: TyCtxt<'_>) -> &LintStore {
39     let store: &dyn Any = &*tcx.lint_store;
40     store.downcast_ref().unwrap()
41 }
42
43 macro_rules! lint_callback { ($cx:expr, $f:ident, $($args:expr),*) => ({
44     $cx.pass.$f(&$cx.context, $($args),*);
45 }) }
46
47 struct LateContextAndPass<'tcx, T: LateLintPass<'tcx>> {
48     context: LateContext<'tcx>,
49     pass: T,
50 }
51
52 impl<'tcx, T: LateLintPass<'tcx>> LateContextAndPass<'tcx, T> {
53     /// Merge the lints specified by any lint attributes into the
54     /// current lint context, call the provided function, then reset the
55     /// lints in effect to their previous state.
56     fn with_lint_attrs<F>(&mut self, id: hir::HirId, attrs: &'tcx [ast::Attribute], f: F)
57     where
58         F: FnOnce(&mut Self),
59     {
60         let prev = self.context.last_node_with_lint_attrs;
61         self.context.last_node_with_lint_attrs = id;
62         self.enter_attrs(attrs);
63         f(self);
64         self.exit_attrs(attrs);
65         self.context.last_node_with_lint_attrs = prev;
66     }
67
68     fn with_param_env<F>(&mut self, id: hir::HirId, f: F)
69     where
70         F: FnOnce(&mut Self),
71     {
72         let old_param_env = self.context.param_env;
73         self.context.param_env =
74             self.context.tcx.param_env(self.context.tcx.hir().local_def_id(id));
75         f(self);
76         self.context.param_env = old_param_env;
77     }
78
79     fn process_mod(&mut self, m: &'tcx hir::Mod<'tcx>, s: Span, n: hir::HirId) {
80         lint_callback!(self, check_mod, m, s, n);
81         hir_visit::walk_mod(self, m, n);
82         lint_callback!(self, check_mod_post, m, s, n);
83     }
84
85     fn enter_attrs(&mut self, attrs: &'tcx [ast::Attribute]) {
86         debug!("late context: enter_attrs({:?})", attrs);
87         lint_callback!(self, enter_lint_attrs, attrs);
88     }
89
90     fn exit_attrs(&mut self, attrs: &'tcx [ast::Attribute]) {
91         debug!("late context: exit_attrs({:?})", attrs);
92         lint_callback!(self, exit_lint_attrs, attrs);
93     }
94 }
95
96 impl<'tcx, T: LateLintPass<'tcx>> hir_visit::Visitor<'tcx> for LateContextAndPass<'tcx, T> {
97     type Map = Map<'tcx>;
98
99     /// Because lints are scoped lexically, we want to walk nested
100     /// items in the context of the outer item, so enable
101     /// deep-walking.
102     fn nested_visit_map(&mut self) -> hir_visit::NestedVisitorMap<Self::Map> {
103         hir_visit::NestedVisitorMap::All(self.context.tcx.hir())
104     }
105
106     fn visit_nested_body(&mut self, body_id: hir::BodyId) {
107         let old_enclosing_body = self.context.enclosing_body.replace(body_id);
108         let old_cached_typeck_results = self.context.cached_typeck_results.get();
109
110         // HACK(eddyb) avoid trashing `cached_typeck_results` when we're
111         // nested in `visit_fn`, which may have already resulted in them
112         // being queried.
113         if old_enclosing_body != Some(body_id) {
114             self.context.cached_typeck_results.set(None);
115         }
116
117         let body = self.context.tcx.hir().body(body_id);
118         self.visit_body(body);
119         self.context.enclosing_body = old_enclosing_body;
120
121         // See HACK comment above.
122         if old_enclosing_body != Some(body_id) {
123             self.context.cached_typeck_results.set(old_cached_typeck_results);
124         }
125     }
126
127     fn visit_param(&mut self, param: &'tcx hir::Param<'tcx>) {
128         self.with_lint_attrs(param.hir_id, &param.attrs, |cx| {
129             lint_callback!(cx, check_param, param);
130             hir_visit::walk_param(cx, param);
131         });
132     }
133
134     fn visit_body(&mut self, body: &'tcx hir::Body<'tcx>) {
135         lint_callback!(self, check_body, body);
136         hir_visit::walk_body(self, body);
137         lint_callback!(self, check_body_post, body);
138     }
139
140     fn visit_item(&mut self, it: &'tcx hir::Item<'tcx>) {
141         let generics = self.context.generics.take();
142         self.context.generics = it.kind.generics();
143         self.with_lint_attrs(it.hir_id, &it.attrs, |cx| {
144             cx.with_param_env(it.hir_id, |cx| {
145                 lint_callback!(cx, check_item, it);
146                 hir_visit::walk_item(cx, it);
147                 lint_callback!(cx, check_item_post, it);
148             });
149         });
150         self.context.generics = generics;
151     }
152
153     fn visit_foreign_item(&mut self, it: &'tcx hir::ForeignItem<'tcx>) {
154         self.with_lint_attrs(it.hir_id, &it.attrs, |cx| {
155             cx.with_param_env(it.hir_id, |cx| {
156                 lint_callback!(cx, check_foreign_item, it);
157                 hir_visit::walk_foreign_item(cx, it);
158                 lint_callback!(cx, check_foreign_item_post, it);
159             });
160         })
161     }
162
163     fn visit_pat(&mut self, p: &'tcx hir::Pat<'tcx>) {
164         lint_callback!(self, check_pat, p);
165         hir_visit::walk_pat(self, p);
166     }
167
168     fn visit_expr(&mut self, e: &'tcx hir::Expr<'tcx>) {
169         self.with_lint_attrs(e.hir_id, &e.attrs, |cx| {
170             lint_callback!(cx, check_expr, e);
171             hir_visit::walk_expr(cx, e);
172             lint_callback!(cx, check_expr_post, e);
173         })
174     }
175
176     fn visit_stmt(&mut self, s: &'tcx hir::Stmt<'tcx>) {
177         let get_item = |id: hir::ItemId| self.context.tcx.hir().item(id.id);
178         let attrs = &s.kind.attrs(get_item);
179         // See `EarlyContextAndPass::visit_stmt` for an explanation
180         // of why we call `walk_stmt` outside of `with_lint_attrs`
181         self.with_lint_attrs(s.hir_id, attrs, |cx| {
182             lint_callback!(cx, check_stmt, s);
183         });
184         hir_visit::walk_stmt(self, s);
185     }
186
187     fn visit_fn(
188         &mut self,
189         fk: hir_visit::FnKind<'tcx>,
190         decl: &'tcx hir::FnDecl<'tcx>,
191         body_id: hir::BodyId,
192         span: Span,
193         id: hir::HirId,
194     ) {
195         // Wrap in typeck results here, not just in visit_nested_body,
196         // in order for `check_fn` to be able to use them.
197         let old_enclosing_body = self.context.enclosing_body.replace(body_id);
198         let old_cached_typeck_results = self.context.cached_typeck_results.take();
199         let body = self.context.tcx.hir().body(body_id);
200         lint_callback!(self, check_fn, fk, decl, body, span, id);
201         hir_visit::walk_fn(self, fk, decl, body_id, span, id);
202         lint_callback!(self, check_fn_post, fk, decl, body, span, id);
203         self.context.enclosing_body = old_enclosing_body;
204         self.context.cached_typeck_results.set(old_cached_typeck_results);
205     }
206
207     fn visit_variant_data(
208         &mut self,
209         s: &'tcx hir::VariantData<'tcx>,
210         _: Symbol,
211         _: &'tcx hir::Generics<'tcx>,
212         _: hir::HirId,
213         _: Span,
214     ) {
215         lint_callback!(self, check_struct_def, s);
216         hir_visit::walk_struct_def(self, s);
217         lint_callback!(self, check_struct_def_post, s);
218     }
219
220     fn visit_struct_field(&mut self, s: &'tcx hir::StructField<'tcx>) {
221         self.with_lint_attrs(s.hir_id, &s.attrs, |cx| {
222             lint_callback!(cx, check_struct_field, s);
223             hir_visit::walk_struct_field(cx, s);
224         })
225     }
226
227     fn visit_variant(
228         &mut self,
229         v: &'tcx hir::Variant<'tcx>,
230         g: &'tcx hir::Generics<'tcx>,
231         item_id: hir::HirId,
232     ) {
233         self.with_lint_attrs(v.id, &v.attrs, |cx| {
234             lint_callback!(cx, check_variant, v);
235             hir_visit::walk_variant(cx, v, g, item_id);
236             lint_callback!(cx, check_variant_post, v);
237         })
238     }
239
240     fn visit_ty(&mut self, t: &'tcx hir::Ty<'tcx>) {
241         lint_callback!(self, check_ty, t);
242         hir_visit::walk_ty(self, t);
243     }
244
245     fn visit_name(&mut self, sp: Span, name: Symbol) {
246         lint_callback!(self, check_name, sp, name);
247     }
248
249     fn visit_mod(&mut self, m: &'tcx hir::Mod<'tcx>, s: Span, n: hir::HirId) {
250         if !self.context.only_module {
251             self.process_mod(m, s, n);
252         }
253     }
254
255     fn visit_local(&mut self, l: &'tcx hir::Local<'tcx>) {
256         self.with_lint_attrs(l.hir_id, &l.attrs, |cx| {
257             lint_callback!(cx, check_local, l);
258             hir_visit::walk_local(cx, l);
259         })
260     }
261
262     fn visit_block(&mut self, b: &'tcx hir::Block<'tcx>) {
263         lint_callback!(self, check_block, b);
264         hir_visit::walk_block(self, b);
265         lint_callback!(self, check_block_post, b);
266     }
267
268     fn visit_arm(&mut self, a: &'tcx hir::Arm<'tcx>) {
269         lint_callback!(self, check_arm, a);
270         hir_visit::walk_arm(self, a);
271     }
272
273     fn visit_generic_param(&mut self, p: &'tcx hir::GenericParam<'tcx>) {
274         lint_callback!(self, check_generic_param, p);
275         hir_visit::walk_generic_param(self, p);
276     }
277
278     fn visit_generics(&mut self, g: &'tcx hir::Generics<'tcx>) {
279         lint_callback!(self, check_generics, g);
280         hir_visit::walk_generics(self, g);
281     }
282
283     fn visit_where_predicate(&mut self, p: &'tcx hir::WherePredicate<'tcx>) {
284         lint_callback!(self, check_where_predicate, p);
285         hir_visit::walk_where_predicate(self, p);
286     }
287
288     fn visit_poly_trait_ref(
289         &mut self,
290         t: &'tcx hir::PolyTraitRef<'tcx>,
291         m: hir::TraitBoundModifier,
292     ) {
293         lint_callback!(self, check_poly_trait_ref, t, m);
294         hir_visit::walk_poly_trait_ref(self, t, m);
295     }
296
297     fn visit_trait_item(&mut self, trait_item: &'tcx hir::TraitItem<'tcx>) {
298         let generics = self.context.generics.take();
299         self.context.generics = Some(&trait_item.generics);
300         self.with_lint_attrs(trait_item.hir_id, &trait_item.attrs, |cx| {
301             cx.with_param_env(trait_item.hir_id, |cx| {
302                 lint_callback!(cx, check_trait_item, trait_item);
303                 hir_visit::walk_trait_item(cx, trait_item);
304                 lint_callback!(cx, check_trait_item_post, trait_item);
305             });
306         });
307         self.context.generics = generics;
308     }
309
310     fn visit_impl_item(&mut self, impl_item: &'tcx hir::ImplItem<'tcx>) {
311         let generics = self.context.generics.take();
312         self.context.generics = Some(&impl_item.generics);
313         self.with_lint_attrs(impl_item.hir_id, &impl_item.attrs, |cx| {
314             cx.with_param_env(impl_item.hir_id, |cx| {
315                 lint_callback!(cx, check_impl_item, impl_item);
316                 hir_visit::walk_impl_item(cx, impl_item);
317                 lint_callback!(cx, check_impl_item_post, impl_item);
318             });
319         });
320         self.context.generics = generics;
321     }
322
323     fn visit_lifetime(&mut self, lt: &'tcx hir::Lifetime) {
324         lint_callback!(self, check_lifetime, lt);
325         hir_visit::walk_lifetime(self, lt);
326     }
327
328     fn visit_path(&mut self, p: &'tcx hir::Path<'tcx>, id: hir::HirId) {
329         lint_callback!(self, check_path, p, id);
330         hir_visit::walk_path(self, p);
331     }
332
333     fn visit_attribute(&mut self, attr: &'tcx ast::Attribute) {
334         lint_callback!(self, check_attribute, attr);
335     }
336 }
337
338 struct LateLintPassObjects<'a> {
339     lints: &'a mut [LateLintPassObject],
340 }
341
342 #[allow(rustc::lint_pass_impl_without_macro)]
343 impl LintPass for LateLintPassObjects<'_> {
344     fn name(&self) -> &'static str {
345         panic!()
346     }
347 }
348
349 macro_rules! expand_late_lint_pass_impl_methods {
350     ([$hir:tt], [$($(#[$attr:meta])* fn $name:ident($($param:ident: $arg:ty),*);)*]) => (
351         $(fn $name(&mut self, context: &LateContext<$hir>, $($param: $arg),*) {
352             for obj in self.lints.iter_mut() {
353                 obj.$name(context, $($param),*);
354             }
355         })*
356     )
357 }
358
359 macro_rules! late_lint_pass_impl {
360     ([], [$hir:tt], $methods:tt) => {
361         impl<$hir> LateLintPass<$hir> for LateLintPassObjects<'_> {
362             expand_late_lint_pass_impl_methods!([$hir], $methods);
363         }
364     };
365 }
366
367 crate::late_lint_methods!(late_lint_pass_impl, [], ['tcx]);
368
369 fn late_lint_mod_pass<'tcx, T: LateLintPass<'tcx>>(
370     tcx: TyCtxt<'tcx>,
371     module_def_id: LocalDefId,
372     pass: T,
373 ) {
374     let access_levels = &tcx.privacy_access_levels(LOCAL_CRATE);
375
376     let context = LateContext {
377         tcx,
378         enclosing_body: None,
379         cached_typeck_results: Cell::new(None),
380         param_env: ty::ParamEnv::empty(),
381         access_levels,
382         lint_store: unerased_lint_store(tcx),
383         last_node_with_lint_attrs: tcx.hir().local_def_id_to_hir_id(module_def_id),
384         generics: None,
385         only_module: true,
386     };
387
388     let mut cx = LateContextAndPass { context, pass };
389
390     let (module, span, hir_id) = tcx.hir().get_module(module_def_id);
391     cx.process_mod(module, span, hir_id);
392
393     // Visit the crate attributes
394     if hir_id == hir::CRATE_HIR_ID {
395         walk_list!(cx, visit_attribute, tcx.hir().attrs(hir::CRATE_HIR_ID));
396     }
397 }
398
399 pub fn late_lint_mod<'tcx, T: LateLintPass<'tcx>>(
400     tcx: TyCtxt<'tcx>,
401     module_def_id: LocalDefId,
402     builtin_lints: T,
403 ) {
404     if tcx.sess.opts.debugging_opts.no_interleave_lints {
405         // These passes runs in late_lint_crate with -Z no_interleave_lints
406         return;
407     }
408
409     late_lint_mod_pass(tcx, module_def_id, builtin_lints);
410
411     let mut passes: Vec<_> =
412         unerased_lint_store(tcx).late_module_passes.iter().map(|pass| (pass)()).collect();
413
414     if !passes.is_empty() {
415         late_lint_mod_pass(tcx, module_def_id, LateLintPassObjects { lints: &mut passes[..] });
416     }
417 }
418
419 fn late_lint_pass_crate<'tcx, T: LateLintPass<'tcx>>(tcx: TyCtxt<'tcx>, pass: T) {
420     let access_levels = &tcx.privacy_access_levels(LOCAL_CRATE);
421
422     let krate = tcx.hir().krate();
423
424     let context = LateContext {
425         tcx,
426         enclosing_body: None,
427         cached_typeck_results: Cell::new(None),
428         param_env: ty::ParamEnv::empty(),
429         access_levels,
430         lint_store: unerased_lint_store(tcx),
431         last_node_with_lint_attrs: hir::CRATE_HIR_ID,
432         generics: None,
433         only_module: false,
434     };
435
436     let mut cx = LateContextAndPass { context, pass };
437
438     // Visit the whole crate.
439     cx.with_lint_attrs(hir::CRATE_HIR_ID, &krate.item.attrs, |cx| {
440         // since the root module isn't visited as an item (because it isn't an
441         // item), warn for it here.
442         lint_callback!(cx, check_crate, krate);
443
444         hir_visit::walk_crate(cx, krate);
445
446         lint_callback!(cx, check_crate_post, krate);
447     })
448 }
449
450 fn late_lint_crate<'tcx, T: LateLintPass<'tcx>>(tcx: TyCtxt<'tcx>, builtin_lints: T) {
451     let mut passes = unerased_lint_store(tcx).late_passes.iter().map(|p| (p)()).collect::<Vec<_>>();
452
453     if !tcx.sess.opts.debugging_opts.no_interleave_lints {
454         if !passes.is_empty() {
455             late_lint_pass_crate(tcx, LateLintPassObjects { lints: &mut passes[..] });
456         }
457
458         late_lint_pass_crate(tcx, builtin_lints);
459     } else {
460         for pass in &mut passes {
461             tcx.sess.prof.extra_verbose_generic_activity("run_late_lint", pass.name()).run(|| {
462                 late_lint_pass_crate(tcx, LateLintPassObjects { lints: slice::from_mut(pass) });
463             });
464         }
465
466         let mut passes: Vec<_> =
467             unerased_lint_store(tcx).late_module_passes.iter().map(|pass| (pass)()).collect();
468
469         for pass in &mut passes {
470             tcx.sess.prof.extra_verbose_generic_activity("run_late_module_lint", pass.name()).run(
471                 || {
472                     late_lint_pass_crate(tcx, LateLintPassObjects { lints: slice::from_mut(pass) });
473                 },
474             );
475         }
476     }
477 }
478
479 /// Performs lint checking on a crate.
480 pub fn check_crate<'tcx, T: LateLintPass<'tcx>>(
481     tcx: TyCtxt<'tcx>,
482     builtin_lints: impl FnOnce() -> T + Send,
483 ) {
484     join(
485         || {
486             tcx.sess.time("crate_lints", || {
487                 // Run whole crate non-incremental lints
488                 late_lint_crate(tcx, builtin_lints());
489             });
490         },
491         || {
492             tcx.sess.time("module_lints", || {
493                 // Run per-module lints
494                 par_iter(&tcx.hir().krate().modules).for_each(|(&module, _)| {
495                     tcx.ensure().lint_mod(tcx.hir().local_def_id(module));
496                 });
497             });
498         },
499     );
500 }