]> git.lizzy.rs Git - rust.git/blob - src/librustc/lint/context.rs
Auto merge of #50265 - japaric:sz, r=alexcrichton
[rust.git] / src / librustc / lint / context.rs
1 // Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Implementation of lint checking.
12 //!
13 //! The lint checking is mostly consolidated into one pass which runs
14 //! after all other analyses. Throughout compilation, lint warnings
15 //! can be added via the `add_lint` method on the Session structure. This
16 //! requires a span and an id of the node that the lint is being added to. The
17 //! lint isn't actually emitted at that time because it is unknown what the
18 //! actual lint level at that location is.
19 //!
20 //! To actually emit lint warnings/errors, a separate pass is used.
21 //! A context keeps track of the current state of all lint levels.
22 //! Upon entering a node of the ast which can modify the lint settings, the
23 //! previous lint state is pushed onto a stack and the ast is then recursed
24 //! upon.  As the ast is traversed, this keeps track of the current lint level
25 //! for all lint attributes.
26
27 use self::TargetLint::*;
28
29 use std::slice;
30 use rustc_data_structures::sync::{RwLock, ReadGuard};
31 use lint::{EarlyLintPassObject, LateLintPassObject};
32 use lint::{Level, Lint, LintId, LintPass, LintBuffer};
33 use lint::builtin::BuiltinLintDiagnostics;
34 use lint::levels::{LintLevelSets, LintLevelsBuilder};
35 use middle::privacy::AccessLevels;
36 use rustc_serialize::{Decoder, Decodable, Encoder, Encodable};
37 use session::{config, early_error, Session};
38 use ty::{self, TyCtxt, Ty};
39 use ty::layout::{LayoutError, LayoutOf, TyLayout};
40 use util::nodemap::FxHashMap;
41
42 use std::default::Default as StdDefault;
43 use syntax::ast;
44 use syntax::edition;
45 use syntax_pos::{MultiSpan, Span};
46 use errors::DiagnosticBuilder;
47 use hir;
48 use hir::def_id::LOCAL_CRATE;
49 use hir::intravisit as hir_visit;
50 use syntax::visit as ast_visit;
51
52 /// Information about the registered lints.
53 ///
54 /// This is basically the subset of `Context` that we can
55 /// build early in the compile pipeline.
56 pub struct LintStore {
57     /// Registered lints. The bool is true if the lint was
58     /// added by a plugin.
59     lints: Vec<(&'static Lint, bool)>,
60
61     /// Trait objects for each lint pass.
62     /// This is only `None` while performing a lint pass. See the definition
63     /// of `LintSession::new`.
64     early_passes: Option<Vec<EarlyLintPassObject>>,
65     late_passes: Option<Vec<LateLintPassObject>>,
66
67     /// Lints indexed by name.
68     by_name: FxHashMap<String, TargetLint>,
69
70     /// Map of registered lint groups to what lints they expand to. The bool
71     /// is true if the lint group was added by a plugin.
72     lint_groups: FxHashMap<&'static str, (Vec<LintId>, bool)>,
73
74     /// Extra info for future incompatibility lints, describing the
75     /// issue or RFC that caused the incompatibility.
76     future_incompatible: FxHashMap<LintId, FutureIncompatibleInfo>,
77 }
78
79 pub struct LintSession<'a, PassObject> {
80     /// Reference to the store of registered lints.
81     lints: ReadGuard<'a, LintStore>,
82
83     /// Trait objects for each lint pass.
84     passes: Option<Vec<PassObject>>,
85 }
86
87
88 /// Lints that are buffered up early on in the `Session` before the
89 /// `LintLevels` is calculated
90 #[derive(PartialEq, RustcEncodable, RustcDecodable, Debug)]
91 pub struct BufferedEarlyLint {
92     pub lint_id: LintId,
93     pub ast_id: ast::NodeId,
94     pub span: MultiSpan,
95     pub msg: String,
96     pub diagnostic: BuiltinLintDiagnostics,
97 }
98
99 /// Extra information for a future incompatibility lint. See the call
100 /// to `register_future_incompatible` in `librustc_lint/lib.rs` for
101 /// guidelines.
102 pub struct FutureIncompatibleInfo {
103     pub id: LintId,
104     /// e.g., a URL for an issue/PR/RFC or error code
105     pub reference: &'static str,
106     /// If this is an edition fixing lint, the edition in which
107     /// this lint becomes obsolete
108     pub edition: Option<edition::Edition>,
109 }
110
111 /// The target of the `by_name` map, which accounts for renaming/deprecation.
112 enum TargetLint {
113     /// A direct lint target
114     Id(LintId),
115
116     /// Temporary renaming, used for easing migration pain; see #16545
117     Renamed(String, LintId),
118
119     /// Lint with this name existed previously, but has been removed/deprecated.
120     /// The string argument is the reason for removal.
121     Removed(String),
122 }
123
124 pub enum FindLintError {
125     NotFound,
126     Removed,
127 }
128
129 pub enum CheckLintNameResult<'a> {
130     Ok(&'a [LintId]),
131     /// Lint doesn't exist
132     NoLint,
133     /// The lint is either renamed or removed. This is the warning
134     /// message.
135     Warning(String),
136 }
137
138 impl LintStore {
139     pub fn new() -> LintStore {
140         LintStore {
141             lints: vec![],
142             early_passes: Some(vec![]),
143             late_passes: Some(vec![]),
144             by_name: FxHashMap(),
145             future_incompatible: FxHashMap(),
146             lint_groups: FxHashMap(),
147         }
148     }
149
150     pub fn get_lints<'t>(&'t self) -> &'t [(&'static Lint, bool)] {
151         &self.lints
152     }
153
154     pub fn get_lint_groups<'t>(&'t self) -> Vec<(&'static str, Vec<LintId>, bool)> {
155         self.lint_groups.iter().map(|(k, v)| (*k,
156                                               v.0.clone(),
157                                               v.1)).collect()
158     }
159
160     pub fn register_early_pass(&mut self,
161                                sess: Option<&Session>,
162                                from_plugin: bool,
163                                pass: EarlyLintPassObject) {
164         self.push_pass(sess, from_plugin, &pass);
165         self.early_passes.as_mut().unwrap().push(pass);
166     }
167
168     pub fn register_late_pass(&mut self,
169                               sess: Option<&Session>,
170                               from_plugin: bool,
171                               pass: LateLintPassObject) {
172         self.push_pass(sess, from_plugin, &pass);
173         self.late_passes.as_mut().unwrap().push(pass);
174     }
175
176     // Helper method for register_early/late_pass
177     fn push_pass<P: LintPass + ?Sized + 'static>(&mut self,
178                                         sess: Option<&Session>,
179                                         from_plugin: bool,
180                                         pass: &Box<P>) {
181         for &lint in pass.get_lints() {
182             self.lints.push((*lint, from_plugin));
183
184             let id = LintId::of(*lint);
185             if self.by_name.insert(lint.name_lower(), Id(id)).is_some() {
186                 let msg = format!("duplicate specification of lint {}", lint.name_lower());
187                 match (sess, from_plugin) {
188                     // We load builtin lints first, so a duplicate is a compiler bug.
189                     // Use early_error when handling -W help with no crate.
190                     (None, _) => early_error(config::ErrorOutputType::default(), &msg[..]),
191                     (Some(_), false) => bug!("{}", msg),
192
193                     // A duplicate name from a plugin is a user error.
194                     (Some(sess), true)  => sess.err(&msg[..]),
195                 }
196             }
197         }
198     }
199
200     pub fn register_future_incompatible(&mut self,
201                                         sess: Option<&Session>,
202                                         lints: Vec<FutureIncompatibleInfo>) {
203
204         for edition in edition::ALL_EDITIONS {
205             let lints = lints.iter().filter(|f| f.edition == Some(*edition)).map(|f| f.id)
206                              .collect::<Vec<_>>();
207             if !lints.is_empty() {
208                 self.register_group(sess, false, edition.lint_name(), lints)
209             }
210         }
211
212         let mut future_incompatible = vec![];
213         for lint in lints {
214             future_incompatible.push(lint.id);
215             self.future_incompatible.insert(lint.id, lint);
216         }
217
218         self.register_group(sess, false, "future_incompatible", future_incompatible);
219
220
221     }
222
223     pub fn future_incompatible(&self, id: LintId) -> Option<&FutureIncompatibleInfo> {
224         self.future_incompatible.get(&id)
225     }
226
227     pub fn register_group(&mut self, sess: Option<&Session>,
228                           from_plugin: bool, name: &'static str,
229                           to: Vec<LintId>) {
230         let new = self.lint_groups.insert(name, (to, from_plugin)).is_none();
231
232         if !new {
233             let msg = format!("duplicate specification of lint group {}", name);
234             match (sess, from_plugin) {
235                 // We load builtin lints first, so a duplicate is a compiler bug.
236                 // Use early_error when handling -W help with no crate.
237                 (None, _) => early_error(config::ErrorOutputType::default(), &msg[..]),
238                 (Some(_), false) => bug!("{}", msg),
239
240                 // A duplicate name from a plugin is a user error.
241                 (Some(sess), true)  => sess.err(&msg[..]),
242             }
243         }
244     }
245
246     pub fn register_renamed(&mut self, old_name: &str, new_name: &str) {
247         let target = match self.by_name.get(new_name) {
248             Some(&Id(lint_id)) => lint_id.clone(),
249             _ => bug!("invalid lint renaming of {} to {}", old_name, new_name)
250         };
251         self.by_name.insert(old_name.to_string(), Renamed(new_name.to_string(), target));
252     }
253
254     pub fn register_removed(&mut self, name: &str, reason: &str) {
255         self.by_name.insert(name.into(), Removed(reason.into()));
256     }
257
258     pub fn find_lints(&self, lint_name: &str) -> Result<Vec<LintId>, FindLintError> {
259         match self.by_name.get(lint_name) {
260             Some(&Id(lint_id)) => Ok(vec![lint_id]),
261             Some(&Renamed(_, lint_id)) => {
262                 Ok(vec![lint_id])
263             },
264             Some(&Removed(_)) => {
265                 Err(FindLintError::Removed)
266             },
267             None => {
268                 match self.lint_groups.get(lint_name) {
269                     Some(v) => Ok(v.0.clone()),
270                     None => Err(FindLintError::Removed)
271                 }
272             }
273         }
274     }
275
276     /// Checks the validity of lint names derived from the command line
277     pub fn check_lint_name_cmdline(&self,
278                                    sess: &Session,
279                                    lint_name: &str,
280                                    level: Level) {
281         let db = match self.check_lint_name(lint_name) {
282             CheckLintNameResult::Ok(_) => None,
283             CheckLintNameResult::Warning(ref msg) => {
284                 Some(sess.struct_warn(msg))
285             },
286             CheckLintNameResult::NoLint => {
287                 Some(struct_err!(sess, E0602, "unknown lint: `{}`", lint_name))
288             }
289         };
290
291         if let Some(mut db) = db {
292             let msg = format!("requested on the command line with `{} {}`",
293                               match level {
294                                   Level::Allow => "-A",
295                                   Level::Warn => "-W",
296                                   Level::Deny => "-D",
297                                   Level::Forbid => "-F",
298                               },
299                               lint_name);
300             db.note(&msg);
301             db.emit();
302         }
303     }
304
305     /// Checks the name of a lint for its existence, and whether it was
306     /// renamed or removed. Generates a DiagnosticBuilder containing a
307     /// warning for renamed and removed lints. This is over both lint
308     /// names from attributes and those passed on the command line. Since
309     /// it emits non-fatal warnings and there are *two* lint passes that
310     /// inspect attributes, this is only run from the late pass to avoid
311     /// printing duplicate warnings.
312     pub fn check_lint_name(&self, lint_name: &str) -> CheckLintNameResult {
313         match self.by_name.get(lint_name) {
314             Some(&Renamed(ref new_name, _)) => {
315                 CheckLintNameResult::Warning(
316                     format!("lint {} has been renamed to {}", lint_name, new_name)
317                 )
318             },
319             Some(&Removed(ref reason)) => {
320                 CheckLintNameResult::Warning(
321                     format!("lint {} has been removed: {}", lint_name, reason)
322                 )
323             },
324             None => {
325                 match self.lint_groups.get(lint_name) {
326                     None => CheckLintNameResult::NoLint,
327                     Some(ids) => CheckLintNameResult::Ok(&ids.0),
328                 }
329             }
330             Some(&Id(ref id)) => CheckLintNameResult::Ok(slice::from_ref(id)),
331         }
332     }
333 }
334
335 impl<'a, PassObject: LintPassObject> LintSession<'a, PassObject> {
336     /// Creates a new `LintSession`, by moving out the `LintStore`'s initial
337     /// lint levels and pass objects. These can be restored using the `restore`
338     /// method.
339     fn new(store: &'a RwLock<LintStore>) -> LintSession<'a, PassObject> {
340         let mut s = store.borrow_mut();
341         let passes = PassObject::take_passes(&mut *s);
342         drop(s);
343         LintSession {
344             lints: store.borrow(),
345             passes,
346         }
347     }
348
349     /// Restores the levels back to the original lint store.
350     fn restore(self, store: &RwLock<LintStore>) {
351         drop(self.lints);
352         let mut s = store.borrow_mut();
353         PassObject::restore_passes(&mut *s, self.passes);
354     }
355 }
356
357 /// Context for lint checking after type checking.
358 pub struct LateContext<'a, 'tcx: 'a> {
359     /// Type context we're checking in.
360     pub tcx: TyCtxt<'a, 'tcx, 'tcx>,
361
362     /// Side-tables for the body we are in.
363     pub tables: &'a ty::TypeckTables<'tcx>,
364
365     /// Parameter environment for the item we are in.
366     pub param_env: ty::ParamEnv<'tcx>,
367
368     /// Items accessible from the crate being checked.
369     pub access_levels: &'a AccessLevels,
370
371     /// The store of registered lints and the lint levels.
372     lint_sess: LintSession<'tcx, LateLintPassObject>,
373
374     last_ast_node_with_lint_attrs: ast::NodeId,
375
376     /// Generic type parameters in scope for the item we are in.
377     pub generics: Option<&'tcx hir::Generics>,
378 }
379
380 /// Context for lint checking of the AST, after expansion, before lowering to
381 /// HIR.
382 pub struct EarlyContext<'a> {
383     /// Type context we're checking in.
384     pub sess: &'a Session,
385
386     /// The crate being checked.
387     pub krate: &'a ast::Crate,
388
389     builder: LintLevelsBuilder<'a>,
390
391     /// The store of registered lints and the lint levels.
392     lint_sess: LintSession<'a, EarlyLintPassObject>,
393
394     buffered: LintBuffer,
395 }
396
397 /// Convenience macro for calling a `LintPass` method on every pass in the context.
398 macro_rules! run_lints { ($cx:expr, $f:ident, $ps:ident, $($args:expr),*) => ({
399     // Move the vector of passes out of `$cx` so that we can
400     // iterate over it mutably while passing `$cx` to the methods.
401     let mut passes = $cx.lint_sess_mut().passes.take().unwrap();
402     for obj in &mut passes {
403         obj.$f($cx, $($args),*);
404     }
405     $cx.lint_sess_mut().passes = Some(passes);
406 }) }
407
408 pub trait LintPassObject: Sized {
409     fn take_passes(store: &mut LintStore) -> Option<Vec<Self>>;
410     fn restore_passes(store: &mut LintStore, passes: Option<Vec<Self>>);
411 }
412
413 impl LintPassObject for EarlyLintPassObject {
414     fn take_passes(store: &mut LintStore) -> Option<Vec<Self>> {
415         store.early_passes.take()
416     }
417
418     fn restore_passes(store: &mut LintStore, passes: Option<Vec<Self>>) {
419         store.early_passes = passes;
420     }
421 }
422
423 impl LintPassObject for LateLintPassObject {
424     fn take_passes(store: &mut LintStore) -> Option<Vec<Self>> {
425         store.late_passes.take()
426     }
427
428     fn restore_passes(store: &mut LintStore, passes: Option<Vec<Self>>) {
429         store.late_passes = passes;
430     }
431 }
432
433
434 pub trait LintContext<'tcx>: Sized {
435     type PassObject: LintPassObject;
436
437     fn sess(&self) -> &Session;
438     fn lints(&self) -> &LintStore;
439     fn lint_sess(&self) -> &LintSession<'tcx, Self::PassObject>;
440     fn lint_sess_mut(&mut self) -> &mut LintSession<'tcx, Self::PassObject>;
441     fn enter_attrs(&mut self, attrs: &'tcx [ast::Attribute]);
442     fn exit_attrs(&mut self, attrs: &'tcx [ast::Attribute]);
443
444     fn lookup_and_emit<S: Into<MultiSpan>>(&self,
445                                            lint: &'static Lint,
446                                            span: Option<S>,
447                                            msg: &str) {
448         self.lookup(lint, span, msg).emit();
449     }
450
451     fn lookup_and_emit_with_diagnostics<S: Into<MultiSpan>>(&self,
452                                                             lint: &'static Lint,
453                                                             span: Option<S>,
454                                                             msg: &str,
455                                                             diagnostic: BuiltinLintDiagnostics) {
456         let mut db = self.lookup(lint, span, msg);
457         diagnostic.run(self.sess(), &mut db);
458         db.emit();
459     }
460
461     fn lookup<S: Into<MultiSpan>>(&self,
462                                   lint: &'static Lint,
463                                   span: Option<S>,
464                                   msg: &str)
465                                   -> DiagnosticBuilder;
466
467     /// Emit a lint at the appropriate level, for a particular span.
468     fn span_lint<S: Into<MultiSpan>>(&self, lint: &'static Lint, span: S, msg: &str) {
469         self.lookup_and_emit(lint, Some(span), msg);
470     }
471
472     fn struct_span_lint<S: Into<MultiSpan>>(&self,
473                                             lint: &'static Lint,
474                                             span: S,
475                                             msg: &str)
476                                             -> DiagnosticBuilder {
477         self.lookup(lint, Some(span), msg)
478     }
479
480     /// Emit a lint and note at the appropriate level, for a particular span.
481     fn span_lint_note(&self, lint: &'static Lint, span: Span, msg: &str,
482                       note_span: Span, note: &str) {
483         let mut err = self.lookup(lint, Some(span), msg);
484         if note_span == span {
485             err.note(note);
486         } else {
487             err.span_note(note_span, note);
488         }
489         err.emit();
490     }
491
492     /// Emit a lint and help at the appropriate level, for a particular span.
493     fn span_lint_help(&self, lint: &'static Lint, span: Span,
494                       msg: &str, help: &str) {
495         let mut err = self.lookup(lint, Some(span), msg);
496         self.span_lint(lint, span, msg);
497         err.span_help(span, help);
498         err.emit();
499     }
500
501     /// Emit a lint at the appropriate level, with no associated span.
502     fn lint(&self, lint: &'static Lint, msg: &str) {
503         self.lookup_and_emit(lint, None as Option<Span>, msg);
504     }
505
506     /// Merge the lints specified by any lint attributes into the
507     /// current lint context, call the provided function, then reset the
508     /// lints in effect to their previous state.
509     fn with_lint_attrs<F>(&mut self,
510                           id: ast::NodeId,
511                           attrs: &'tcx [ast::Attribute],
512                           f: F)
513         where F: FnOnce(&mut Self);
514 }
515
516
517 impl<'a> EarlyContext<'a> {
518     fn new(sess: &'a Session,
519            krate: &'a ast::Crate) -> EarlyContext<'a> {
520         EarlyContext {
521             sess,
522             krate,
523             lint_sess: LintSession::new(&sess.lint_store),
524             builder: LintLevelSets::builder(sess),
525             buffered: sess.buffered_lints.borrow_mut().take().unwrap(),
526         }
527     }
528
529     fn check_id(&mut self, id: ast::NodeId) {
530         for early_lint in self.buffered.take(id) {
531             self.lookup_and_emit_with_diagnostics(early_lint.lint_id.lint,
532                                                   Some(early_lint.span.clone()),
533                                                   &early_lint.msg,
534                                                   early_lint.diagnostic);
535         }
536     }
537 }
538
539 impl<'a, 'tcx> LintContext<'tcx> for LateContext<'a, 'tcx> {
540     type PassObject = LateLintPassObject;
541
542     /// Get the overall compiler `Session` object.
543     fn sess(&self) -> &Session {
544         &self.tcx.sess
545     }
546
547     fn lints(&self) -> &LintStore {
548         &*self.lint_sess.lints
549     }
550
551     fn lint_sess(&self) -> &LintSession<'tcx, Self::PassObject> {
552         &self.lint_sess
553     }
554
555     fn lint_sess_mut(&mut self) -> &mut LintSession<'tcx, Self::PassObject> {
556         &mut self.lint_sess
557     }
558
559     fn enter_attrs(&mut self, attrs: &'tcx [ast::Attribute]) {
560         debug!("late context: enter_attrs({:?})", attrs);
561         run_lints!(self, enter_lint_attrs, late_passes, attrs);
562     }
563
564     fn exit_attrs(&mut self, attrs: &'tcx [ast::Attribute]) {
565         debug!("late context: exit_attrs({:?})", attrs);
566         run_lints!(self, exit_lint_attrs, late_passes, attrs);
567     }
568
569     fn lookup<S: Into<MultiSpan>>(&self,
570                                   lint: &'static Lint,
571                                   span: Option<S>,
572                                   msg: &str)
573                                   -> DiagnosticBuilder {
574         let id = self.last_ast_node_with_lint_attrs;
575         match span {
576             Some(s) => self.tcx.struct_span_lint_node(lint, id, s, msg),
577             None => self.tcx.struct_lint_node(lint, id, msg),
578         }
579     }
580
581     fn with_lint_attrs<F>(&mut self,
582                           id: ast::NodeId,
583                           attrs: &'tcx [ast::Attribute],
584                           f: F)
585         where F: FnOnce(&mut Self)
586     {
587         let prev = self.last_ast_node_with_lint_attrs;
588         self.last_ast_node_with_lint_attrs = id;
589         self.enter_attrs(attrs);
590         f(self);
591         self.exit_attrs(attrs);
592         self.last_ast_node_with_lint_attrs = prev;
593     }
594 }
595
596 impl<'a> LintContext<'a> for EarlyContext<'a> {
597     type PassObject = EarlyLintPassObject;
598
599     /// Get the overall compiler `Session` object.
600     fn sess(&self) -> &Session {
601         &self.sess
602     }
603
604     fn lints(&self) -> &LintStore {
605         &*self.lint_sess.lints
606     }
607
608     fn lint_sess(&self) -> &LintSession<'a, Self::PassObject> {
609         &self.lint_sess
610     }
611
612     fn lint_sess_mut(&mut self) -> &mut LintSession<'a, Self::PassObject> {
613         &mut self.lint_sess
614     }
615
616     fn enter_attrs(&mut self, attrs: &'a [ast::Attribute]) {
617         debug!("early context: enter_attrs({:?})", attrs);
618         run_lints!(self, enter_lint_attrs, early_passes, attrs);
619     }
620
621     fn exit_attrs(&mut self, attrs: &'a [ast::Attribute]) {
622         debug!("early context: exit_attrs({:?})", attrs);
623         run_lints!(self, exit_lint_attrs, early_passes, attrs);
624     }
625
626     fn lookup<S: Into<MultiSpan>>(&self,
627                                   lint: &'static Lint,
628                                   span: Option<S>,
629                                   msg: &str)
630                                   -> DiagnosticBuilder {
631         self.builder.struct_lint(lint, span.map(|s| s.into()), msg)
632     }
633
634     fn with_lint_attrs<F>(&mut self,
635                           id: ast::NodeId,
636                           attrs: &'a [ast::Attribute],
637                           f: F)
638         where F: FnOnce(&mut Self)
639     {
640         let push = self.builder.push(attrs);
641         self.check_id(id);
642         self.enter_attrs(attrs);
643         f(self);
644         self.exit_attrs(attrs);
645         self.builder.pop(push);
646     }
647 }
648
649 impl<'a, 'tcx> LateContext<'a, 'tcx> {
650     fn with_param_env<F>(&mut self, id: ast::NodeId, f: F)
651         where F: FnOnce(&mut Self),
652     {
653         let old_param_env = self.param_env;
654         self.param_env = self.tcx.param_env(self.tcx.hir.local_def_id(id));
655         f(self);
656         self.param_env = old_param_env;
657     }
658 }
659
660 impl<'a, 'tcx> LayoutOf for &'a LateContext<'a, 'tcx> {
661     type Ty = Ty<'tcx>;
662     type TyLayout = Result<TyLayout<'tcx>, LayoutError<'tcx>>;
663
664     fn layout_of(self, ty: Ty<'tcx>) -> Self::TyLayout {
665         self.tcx.layout_of(self.param_env.and(ty))
666     }
667 }
668
669 impl<'a, 'tcx> hir_visit::Visitor<'tcx> for LateContext<'a, 'tcx> {
670     /// Because lints are scoped lexically, we want to walk nested
671     /// items in the context of the outer item, so enable
672     /// deep-walking.
673     fn nested_visit_map<'this>(&'this mut self) -> hir_visit::NestedVisitorMap<'this, 'tcx> {
674         hir_visit::NestedVisitorMap::All(&self.tcx.hir)
675     }
676
677     fn visit_nested_body(&mut self, body: hir::BodyId) {
678         let old_tables = self.tables;
679         self.tables = self.tcx.body_tables(body);
680         let body = self.tcx.hir.body(body);
681         self.visit_body(body);
682         self.tables = old_tables;
683     }
684
685     fn visit_body(&mut self, body: &'tcx hir::Body) {
686         run_lints!(self, check_body, late_passes, body);
687         hir_visit::walk_body(self, body);
688         run_lints!(self, check_body_post, late_passes, body);
689     }
690
691     fn visit_item(&mut self, it: &'tcx hir::Item) {
692         let generics = self.generics.take();
693         self.generics = it.node.generics();
694         self.with_lint_attrs(it.id, &it.attrs, |cx| {
695             cx.with_param_env(it.id, |cx| {
696                 run_lints!(cx, check_item, late_passes, it);
697                 hir_visit::walk_item(cx, it);
698                 run_lints!(cx, check_item_post, late_passes, it);
699             });
700         });
701         self.generics = generics;
702     }
703
704     fn visit_foreign_item(&mut self, it: &'tcx hir::ForeignItem) {
705         self.with_lint_attrs(it.id, &it.attrs, |cx| {
706             cx.with_param_env(it.id, |cx| {
707                 run_lints!(cx, check_foreign_item, late_passes, it);
708                 hir_visit::walk_foreign_item(cx, it);
709                 run_lints!(cx, check_foreign_item_post, late_passes, it);
710             });
711         })
712     }
713
714     fn visit_pat(&mut self, p: &'tcx hir::Pat) {
715         run_lints!(self, check_pat, late_passes, p);
716         hir_visit::walk_pat(self, p);
717     }
718
719     fn visit_expr(&mut self, e: &'tcx hir::Expr) {
720         self.with_lint_attrs(e.id, &e.attrs, |cx| {
721             run_lints!(cx, check_expr, late_passes, e);
722             hir_visit::walk_expr(cx, e);
723             run_lints!(cx, check_expr_post, late_passes, e);
724         })
725     }
726
727     fn visit_stmt(&mut self, s: &'tcx hir::Stmt) {
728         // statement attributes are actually just attributes on one of
729         // - item
730         // - local
731         // - expression
732         // so we keep track of lint levels there
733         run_lints!(self, check_stmt, late_passes, s);
734         hir_visit::walk_stmt(self, s);
735     }
736
737     fn visit_fn(&mut self, fk: hir_visit::FnKind<'tcx>, decl: &'tcx hir::FnDecl,
738                 body_id: hir::BodyId, span: Span, id: ast::NodeId) {
739         // Wrap in tables here, not just in visit_nested_body,
740         // in order for `check_fn` to be able to use them.
741         let old_tables = self.tables;
742         self.tables = self.tcx.body_tables(body_id);
743         let body = self.tcx.hir.body(body_id);
744         run_lints!(self, check_fn, late_passes, fk, decl, body, span, id);
745         hir_visit::walk_fn(self, fk, decl, body_id, span, id);
746         run_lints!(self, check_fn_post, late_passes, fk, decl, body, span, id);
747         self.tables = old_tables;
748     }
749
750     fn visit_variant_data(&mut self,
751                         s: &'tcx hir::VariantData,
752                         name: ast::Name,
753                         g: &'tcx hir::Generics,
754                         item_id: ast::NodeId,
755                         _: Span) {
756         run_lints!(self, check_struct_def, late_passes, s, name, g, item_id);
757         hir_visit::walk_struct_def(self, s);
758         run_lints!(self, check_struct_def_post, late_passes, s, name, g, item_id);
759     }
760
761     fn visit_struct_field(&mut self, s: &'tcx hir::StructField) {
762         self.with_lint_attrs(s.id, &s.attrs, |cx| {
763             run_lints!(cx, check_struct_field, late_passes, s);
764             hir_visit::walk_struct_field(cx, s);
765         })
766     }
767
768     fn visit_variant(&mut self,
769                      v: &'tcx hir::Variant,
770                      g: &'tcx hir::Generics,
771                      item_id: ast::NodeId) {
772         self.with_lint_attrs(v.node.data.id(), &v.node.attrs, |cx| {
773             run_lints!(cx, check_variant, late_passes, v, g);
774             hir_visit::walk_variant(cx, v, g, item_id);
775             run_lints!(cx, check_variant_post, late_passes, v, g);
776         })
777     }
778
779     fn visit_ty(&mut self, t: &'tcx hir::Ty) {
780         run_lints!(self, check_ty, late_passes, t);
781         hir_visit::walk_ty(self, t);
782     }
783
784     fn visit_name(&mut self, sp: Span, name: ast::Name) {
785         run_lints!(self, check_name, late_passes, sp, name);
786     }
787
788     fn visit_mod(&mut self, m: &'tcx hir::Mod, s: Span, n: ast::NodeId) {
789         run_lints!(self, check_mod, late_passes, m, s, n);
790         hir_visit::walk_mod(self, m, n);
791         run_lints!(self, check_mod_post, late_passes, m, s, n);
792     }
793
794     fn visit_local(&mut self, l: &'tcx hir::Local) {
795         self.with_lint_attrs(l.id, &l.attrs, |cx| {
796             run_lints!(cx, check_local, late_passes, l);
797             hir_visit::walk_local(cx, l);
798         })
799     }
800
801     fn visit_block(&mut self, b: &'tcx hir::Block) {
802         run_lints!(self, check_block, late_passes, b);
803         hir_visit::walk_block(self, b);
804         run_lints!(self, check_block_post, late_passes, b);
805     }
806
807     fn visit_arm(&mut self, a: &'tcx hir::Arm) {
808         run_lints!(self, check_arm, late_passes, a);
809         hir_visit::walk_arm(self, a);
810     }
811
812     fn visit_decl(&mut self, d: &'tcx hir::Decl) {
813         run_lints!(self, check_decl, late_passes, d);
814         hir_visit::walk_decl(self, d);
815     }
816
817     fn visit_generic_param(&mut self, p: &'tcx hir::GenericParam) {
818         run_lints!(self, check_generic_param, late_passes, p);
819         hir_visit::walk_generic_param(self, p);
820     }
821
822     fn visit_generics(&mut self, g: &'tcx hir::Generics) {
823         run_lints!(self, check_generics, late_passes, g);
824         hir_visit::walk_generics(self, g);
825     }
826
827     fn visit_where_predicate(&mut self, p: &'tcx hir::WherePredicate) {
828         run_lints!(self, check_where_predicate, late_passes, p);
829         hir_visit::walk_where_predicate(self, p);
830     }
831
832     fn visit_poly_trait_ref(&mut self, t: &'tcx hir::PolyTraitRef,
833                             m: hir::TraitBoundModifier) {
834         run_lints!(self, check_poly_trait_ref, late_passes, t, m);
835         hir_visit::walk_poly_trait_ref(self, t, m);
836     }
837
838     fn visit_trait_item(&mut self, trait_item: &'tcx hir::TraitItem) {
839         let generics = self.generics.take();
840         self.generics = Some(&trait_item.generics);
841         self.with_lint_attrs(trait_item.id, &trait_item.attrs, |cx| {
842             cx.with_param_env(trait_item.id, |cx| {
843                 run_lints!(cx, check_trait_item, late_passes, trait_item);
844                 hir_visit::walk_trait_item(cx, trait_item);
845                 run_lints!(cx, check_trait_item_post, late_passes, trait_item);
846             });
847         });
848         self.generics = generics;
849     }
850
851     fn visit_impl_item(&mut self, impl_item: &'tcx hir::ImplItem) {
852         let generics = self.generics.take();
853         self.generics = Some(&impl_item.generics);
854         self.with_lint_attrs(impl_item.id, &impl_item.attrs, |cx| {
855             cx.with_param_env(impl_item.id, |cx| {
856                 run_lints!(cx, check_impl_item, late_passes, impl_item);
857                 hir_visit::walk_impl_item(cx, impl_item);
858                 run_lints!(cx, check_impl_item_post, late_passes, impl_item);
859             });
860         });
861         self.generics = generics;
862     }
863
864     fn visit_lifetime(&mut self, lt: &'tcx hir::Lifetime) {
865         run_lints!(self, check_lifetime, late_passes, lt);
866         hir_visit::walk_lifetime(self, lt);
867     }
868
869     fn visit_path(&mut self, p: &'tcx hir::Path, id: ast::NodeId) {
870         run_lints!(self, check_path, late_passes, p, id);
871         hir_visit::walk_path(self, p);
872     }
873
874     fn visit_attribute(&mut self, attr: &'tcx ast::Attribute) {
875         run_lints!(self, check_attribute, late_passes, attr);
876     }
877 }
878
879 impl<'a> ast_visit::Visitor<'a> for EarlyContext<'a> {
880     fn visit_item(&mut self, it: &'a ast::Item) {
881         self.with_lint_attrs(it.id, &it.attrs, |cx| {
882             run_lints!(cx, check_item, early_passes, it);
883             ast_visit::walk_item(cx, it);
884             run_lints!(cx, check_item_post, early_passes, it);
885         })
886     }
887
888     fn visit_foreign_item(&mut self, it: &'a ast::ForeignItem) {
889         self.with_lint_attrs(it.id, &it.attrs, |cx| {
890             run_lints!(cx, check_foreign_item, early_passes, it);
891             ast_visit::walk_foreign_item(cx, it);
892             run_lints!(cx, check_foreign_item_post, early_passes, it);
893         })
894     }
895
896     fn visit_pat(&mut self, p: &'a ast::Pat) {
897         run_lints!(self, check_pat, early_passes, p);
898         self.check_id(p.id);
899         ast_visit::walk_pat(self, p);
900     }
901
902     fn visit_expr(&mut self, e: &'a ast::Expr) {
903         self.with_lint_attrs(e.id, &e.attrs, |cx| {
904             run_lints!(cx, check_expr, early_passes, e);
905             ast_visit::walk_expr(cx, e);
906         })
907     }
908
909     fn visit_stmt(&mut self, s: &'a ast::Stmt) {
910         run_lints!(self, check_stmt, early_passes, s);
911         self.check_id(s.id);
912         ast_visit::walk_stmt(self, s);
913     }
914
915     fn visit_fn(&mut self, fk: ast_visit::FnKind<'a>, decl: &'a ast::FnDecl,
916                 span: Span, id: ast::NodeId) {
917         run_lints!(self, check_fn, early_passes, fk, decl, span, id);
918         self.check_id(id);
919         ast_visit::walk_fn(self, fk, decl, span);
920         run_lints!(self, check_fn_post, early_passes, fk, decl, span, id);
921     }
922
923     fn visit_variant_data(&mut self,
924                         s: &'a ast::VariantData,
925                         ident: ast::Ident,
926                         g: &'a ast::Generics,
927                         item_id: ast::NodeId,
928                         _: Span) {
929         run_lints!(self, check_struct_def, early_passes, s, ident, g, item_id);
930         self.check_id(s.id());
931         ast_visit::walk_struct_def(self, s);
932         run_lints!(self, check_struct_def_post, early_passes, s, ident, g, item_id);
933     }
934
935     fn visit_struct_field(&mut self, s: &'a ast::StructField) {
936         self.with_lint_attrs(s.id, &s.attrs, |cx| {
937             run_lints!(cx, check_struct_field, early_passes, s);
938             ast_visit::walk_struct_field(cx, s);
939         })
940     }
941
942     fn visit_variant(&mut self, v: &'a ast::Variant, g: &'a ast::Generics, item_id: ast::NodeId) {
943         self.with_lint_attrs(item_id, &v.node.attrs, |cx| {
944             run_lints!(cx, check_variant, early_passes, v, g);
945             ast_visit::walk_variant(cx, v, g, item_id);
946             run_lints!(cx, check_variant_post, early_passes, v, g);
947         })
948     }
949
950     fn visit_ty(&mut self, t: &'a ast::Ty) {
951         run_lints!(self, check_ty, early_passes, t);
952         self.check_id(t.id);
953         ast_visit::walk_ty(self, t);
954     }
955
956     fn visit_ident(&mut self, ident: ast::Ident) {
957         run_lints!(self, check_ident, early_passes, ident);
958     }
959
960     fn visit_mod(&mut self, m: &'a ast::Mod, s: Span, _a: &[ast::Attribute], n: ast::NodeId) {
961         run_lints!(self, check_mod, early_passes, m, s, n);
962         self.check_id(n);
963         ast_visit::walk_mod(self, m);
964         run_lints!(self, check_mod_post, early_passes, m, s, n);
965     }
966
967     fn visit_local(&mut self, l: &'a ast::Local) {
968         self.with_lint_attrs(l.id, &l.attrs, |cx| {
969             run_lints!(cx, check_local, early_passes, l);
970             ast_visit::walk_local(cx, l);
971         })
972     }
973
974     fn visit_block(&mut self, b: &'a ast::Block) {
975         run_lints!(self, check_block, early_passes, b);
976         self.check_id(b.id);
977         ast_visit::walk_block(self, b);
978         run_lints!(self, check_block_post, early_passes, b);
979     }
980
981     fn visit_arm(&mut self, a: &'a ast::Arm) {
982         run_lints!(self, check_arm, early_passes, a);
983         ast_visit::walk_arm(self, a);
984     }
985
986     fn visit_expr_post(&mut self, e: &'a ast::Expr) {
987         run_lints!(self, check_expr_post, early_passes, e);
988     }
989
990     fn visit_generic_param(&mut self, param: &'a ast::GenericParam) {
991         run_lints!(self, check_generic_param, early_passes, param);
992         ast_visit::walk_generic_param(self, param);
993     }
994
995     fn visit_generics(&mut self, g: &'a ast::Generics) {
996         run_lints!(self, check_generics, early_passes, g);
997         ast_visit::walk_generics(self, g);
998     }
999
1000     fn visit_where_predicate(&mut self, p: &'a ast::WherePredicate) {
1001         run_lints!(self, check_where_predicate, early_passes, p);
1002         ast_visit::walk_where_predicate(self, p);
1003     }
1004
1005     fn visit_poly_trait_ref(&mut self, t: &'a ast::PolyTraitRef, m: &'a ast::TraitBoundModifier) {
1006         run_lints!(self, check_poly_trait_ref, early_passes, t, m);
1007         ast_visit::walk_poly_trait_ref(self, t, m);
1008     }
1009
1010     fn visit_trait_item(&mut self, trait_item: &'a ast::TraitItem) {
1011         self.with_lint_attrs(trait_item.id, &trait_item.attrs, |cx| {
1012             run_lints!(cx, check_trait_item, early_passes, trait_item);
1013             ast_visit::walk_trait_item(cx, trait_item);
1014             run_lints!(cx, check_trait_item_post, early_passes, trait_item);
1015         });
1016     }
1017
1018     fn visit_impl_item(&mut self, impl_item: &'a ast::ImplItem) {
1019         self.with_lint_attrs(impl_item.id, &impl_item.attrs, |cx| {
1020             run_lints!(cx, check_impl_item, early_passes, impl_item);
1021             ast_visit::walk_impl_item(cx, impl_item);
1022             run_lints!(cx, check_impl_item_post, early_passes, impl_item);
1023         });
1024     }
1025
1026     fn visit_lifetime(&mut self, lt: &'a ast::Lifetime) {
1027         run_lints!(self, check_lifetime, early_passes, lt);
1028         self.check_id(lt.id);
1029     }
1030
1031     fn visit_path(&mut self, p: &'a ast::Path, id: ast::NodeId) {
1032         run_lints!(self, check_path, early_passes, p, id);
1033         self.check_id(id);
1034         ast_visit::walk_path(self, p);
1035     }
1036
1037     fn visit_attribute(&mut self, attr: &'a ast::Attribute) {
1038         run_lints!(self, check_attribute, early_passes, attr);
1039     }
1040
1041     fn visit_mac_def(&mut self, _mac: &'a ast::MacroDef, id: ast::NodeId) {
1042         self.check_id(id);
1043     }
1044 }
1045
1046
1047 /// Perform lint checking on a crate.
1048 ///
1049 /// Consumes the `lint_store` field of the `Session`.
1050 pub fn check_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) {
1051     let access_levels = &tcx.privacy_access_levels(LOCAL_CRATE);
1052
1053     let krate = tcx.hir.krate();
1054
1055     let mut cx = LateContext {
1056         tcx,
1057         tables: &ty::TypeckTables::empty(None),
1058         param_env: ty::ParamEnv::empty(),
1059         access_levels,
1060         lint_sess: LintSession::new(&tcx.sess.lint_store),
1061         last_ast_node_with_lint_attrs: ast::CRATE_NODE_ID,
1062         generics: None,
1063     };
1064
1065     // Visit the whole crate.
1066     cx.with_lint_attrs(ast::CRATE_NODE_ID, &krate.attrs, |cx| {
1067         // since the root module isn't visited as an item (because it isn't an
1068         // item), warn for it here.
1069         run_lints!(cx, check_crate, late_passes, krate);
1070
1071         hir_visit::walk_crate(cx, krate);
1072
1073         run_lints!(cx, check_crate_post, late_passes, krate);
1074     });
1075
1076     // Put the lint store levels and passes back in the session.
1077     cx.lint_sess.restore(&tcx.sess.lint_store);
1078 }
1079
1080 pub fn check_ast_crate(sess: &Session, krate: &ast::Crate) {
1081     let mut cx = EarlyContext::new(sess, krate);
1082
1083     // Visit the whole crate.
1084     cx.with_lint_attrs(ast::CRATE_NODE_ID, &krate.attrs, |cx| {
1085         // since the root module isn't visited as an item (because it isn't an
1086         // item), warn for it here.
1087         run_lints!(cx, check_crate, early_passes, krate);
1088
1089         ast_visit::walk_crate(cx, krate);
1090
1091         run_lints!(cx, check_crate_post, early_passes, krate);
1092     });
1093
1094     // Put the lint store levels and passes back in the session.
1095     cx.lint_sess.restore(&sess.lint_store);
1096
1097     // All of the buffered lints should have been emitted at this point.
1098     // If not, that means that we somehow buffered a lint for a node id
1099     // that was not lint-checked (perhaps it doesn't exist?). This is a bug.
1100     //
1101     // Rustdoc runs everybody-loops before the early lints and removes
1102     // function bodies, so it's totally possible for linted
1103     // node ids to not exist (e.g. macros defined within functions for the
1104     // unused_macro lint) anymore. So we only run this check
1105     // when we're not in rustdoc mode. (see issue #47639)
1106     if !sess.opts.actually_rustdoc {
1107         for (_id, lints) in cx.buffered.map {
1108             for early_lint in lints {
1109                 sess.delay_span_bug(early_lint.span, "failed to process buffered lint here");
1110             }
1111         }
1112     }
1113 }
1114
1115 impl Encodable for LintId {
1116     fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
1117         s.emit_str(&self.lint.name.to_lowercase())
1118     }
1119 }
1120
1121 impl Decodable for LintId {
1122     #[inline]
1123     fn decode<D: Decoder>(d: &mut D) -> Result<LintId, D::Error> {
1124         let s = d.read_str()?;
1125         ty::tls::with(|tcx| {
1126             match tcx.sess.lint_store.borrow().find_lints(&s) {
1127                 Ok(ids) => {
1128                     if ids.len() != 0 {
1129                         panic!("invalid lint-id `{}`", s);
1130                     }
1131                     Ok(ids[0])
1132                 }
1133                 Err(_) => panic!("invalid lint-id `{}`", s),
1134             }
1135         })
1136     }
1137 }