]> git.lizzy.rs Git - rust.git/blob - src/librustc/lint/context.rs
refactor `ParamEnv::empty(Reveal)` into two distinct methods
[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 just
14 //! before translation to LLVM bytecode. 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 just before
21 //! translation. 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 lint::{EarlyLintPassObject, LateLintPassObject};
31 use lint::{Level, Lint, LintId, LintPass, LintBuffer};
32 use lint::builtin::BuiltinLintDiagnostics;
33 use lint::levels::{LintLevelSets, LintLevelsBuilder};
34 use middle::privacy::AccessLevels;
35 use rustc_serialize::{Decoder, Decodable, Encoder, Encodable};
36 use session::{config, early_error, Session};
37 use ty::{self, TyCtxt, Ty};
38 use ty::layout::{LayoutError, LayoutOf, TyLayout};
39 use util::nodemap::FxHashMap;
40
41 use std::default::Default as StdDefault;
42 use std::cell::{Ref, RefCell};
43 use syntax::ast;
44 use syntax::epoch;
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: Ref<'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 epoch fixing lint, the epoch in which
107     /// this lint becomes obsolete
108     pub epoch: Option<epoch::Epoch>,
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 epoch in epoch::ALL_EPOCHS {
205             let lints = lints.iter().filter(|f| f.epoch == Some(*epoch)).map(|f| f.id)
206                              .collect::<Vec<_>>();
207             if !lints.is_empty() {
208                 self.register_group(sess, false, epoch.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 RefCell<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: &RefCell<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<Ty<'tcx>> for &'a LateContext<'a, 'tcx> {
661     type TyLayout = Result<TyLayout<'tcx>, LayoutError<'tcx>>;
662
663     fn layout_of(self, ty: Ty<'tcx>) -> Self::TyLayout {
664         self.tcx.layout_of(self.param_env.and(ty))
665     }
666 }
667
668 impl<'a, 'tcx> hir_visit::Visitor<'tcx> for LateContext<'a, 'tcx> {
669     /// Because lints are scoped lexically, we want to walk nested
670     /// items in the context of the outer item, so enable
671     /// deep-walking.
672     fn nested_visit_map<'this>(&'this mut self) -> hir_visit::NestedVisitorMap<'this, 'tcx> {
673         hir_visit::NestedVisitorMap::All(&self.tcx.hir)
674     }
675
676     fn visit_nested_body(&mut self, body: hir::BodyId) {
677         let old_tables = self.tables;
678         self.tables = self.tcx.body_tables(body);
679         let body = self.tcx.hir.body(body);
680         self.visit_body(body);
681         self.tables = old_tables;
682     }
683
684     fn visit_body(&mut self, body: &'tcx hir::Body) {
685         run_lints!(self, check_body, late_passes, body);
686         hir_visit::walk_body(self, body);
687         run_lints!(self, check_body_post, late_passes, body);
688     }
689
690     fn visit_item(&mut self, it: &'tcx hir::Item) {
691         let generics = self.generics.take();
692         self.generics = it.node.generics();
693         self.with_lint_attrs(it.id, &it.attrs, |cx| {
694             cx.with_param_env(it.id, |cx| {
695                 run_lints!(cx, check_item, late_passes, it);
696                 hir_visit::walk_item(cx, it);
697                 run_lints!(cx, check_item_post, late_passes, it);
698             });
699         });
700         self.generics = generics;
701     }
702
703     fn visit_foreign_item(&mut self, it: &'tcx hir::ForeignItem) {
704         self.with_lint_attrs(it.id, &it.attrs, |cx| {
705             cx.with_param_env(it.id, |cx| {
706                 run_lints!(cx, check_foreign_item, late_passes, it);
707                 hir_visit::walk_foreign_item(cx, it);
708                 run_lints!(cx, check_foreign_item_post, late_passes, it);
709             });
710         })
711     }
712
713     fn visit_pat(&mut self, p: &'tcx hir::Pat) {
714         run_lints!(self, check_pat, late_passes, p);
715         hir_visit::walk_pat(self, p);
716     }
717
718     fn visit_expr(&mut self, e: &'tcx hir::Expr) {
719         self.with_lint_attrs(e.id, &e.attrs, |cx| {
720             run_lints!(cx, check_expr, late_passes, e);
721             hir_visit::walk_expr(cx, e);
722             run_lints!(cx, check_expr_post, late_passes, e);
723         })
724     }
725
726     fn visit_stmt(&mut self, s: &'tcx hir::Stmt) {
727         // statement attributes are actually just attributes on one of
728         // - item
729         // - local
730         // - expression
731         // so we keep track of lint levels there
732         run_lints!(self, check_stmt, late_passes, s);
733         hir_visit::walk_stmt(self, s);
734     }
735
736     fn visit_fn(&mut self, fk: hir_visit::FnKind<'tcx>, decl: &'tcx hir::FnDecl,
737                 body_id: hir::BodyId, span: Span, id: ast::NodeId) {
738         // Wrap in tables here, not just in visit_nested_body,
739         // in order for `check_fn` to be able to use them.
740         let old_tables = self.tables;
741         self.tables = self.tcx.body_tables(body_id);
742         let body = self.tcx.hir.body(body_id);
743         run_lints!(self, check_fn, late_passes, fk, decl, body, span, id);
744         hir_visit::walk_fn(self, fk, decl, body_id, span, id);
745         run_lints!(self, check_fn_post, late_passes, fk, decl, body, span, id);
746         self.tables = old_tables;
747     }
748
749     fn visit_variant_data(&mut self,
750                         s: &'tcx hir::VariantData,
751                         name: ast::Name,
752                         g: &'tcx hir::Generics,
753                         item_id: ast::NodeId,
754                         _: Span) {
755         run_lints!(self, check_struct_def, late_passes, s, name, g, item_id);
756         hir_visit::walk_struct_def(self, s);
757         run_lints!(self, check_struct_def_post, late_passes, s, name, g, item_id);
758     }
759
760     fn visit_struct_field(&mut self, s: &'tcx hir::StructField) {
761         self.with_lint_attrs(s.id, &s.attrs, |cx| {
762             run_lints!(cx, check_struct_field, late_passes, s);
763             hir_visit::walk_struct_field(cx, s);
764         })
765     }
766
767     fn visit_variant(&mut self,
768                      v: &'tcx hir::Variant,
769                      g: &'tcx hir::Generics,
770                      item_id: ast::NodeId) {
771         self.with_lint_attrs(v.node.data.id(), &v.node.attrs, |cx| {
772             run_lints!(cx, check_variant, late_passes, v, g);
773             hir_visit::walk_variant(cx, v, g, item_id);
774             run_lints!(cx, check_variant_post, late_passes, v, g);
775         })
776     }
777
778     fn visit_ty(&mut self, t: &'tcx hir::Ty) {
779         run_lints!(self, check_ty, late_passes, t);
780         hir_visit::walk_ty(self, t);
781     }
782
783     fn visit_name(&mut self, sp: Span, name: ast::Name) {
784         run_lints!(self, check_name, late_passes, sp, name);
785     }
786
787     fn visit_mod(&mut self, m: &'tcx hir::Mod, s: Span, n: ast::NodeId) {
788         run_lints!(self, check_mod, late_passes, m, s, n);
789         hir_visit::walk_mod(self, m, n);
790         run_lints!(self, check_mod_post, late_passes, m, s, n);
791     }
792
793     fn visit_local(&mut self, l: &'tcx hir::Local) {
794         self.with_lint_attrs(l.id, &l.attrs, |cx| {
795             run_lints!(cx, check_local, late_passes, l);
796             hir_visit::walk_local(cx, l);
797         })
798     }
799
800     fn visit_block(&mut self, b: &'tcx hir::Block) {
801         run_lints!(self, check_block, late_passes, b);
802         hir_visit::walk_block(self, b);
803         run_lints!(self, check_block_post, late_passes, b);
804     }
805
806     fn visit_arm(&mut self, a: &'tcx hir::Arm) {
807         run_lints!(self, check_arm, late_passes, a);
808         hir_visit::walk_arm(self, a);
809     }
810
811     fn visit_decl(&mut self, d: &'tcx hir::Decl) {
812         run_lints!(self, check_decl, late_passes, d);
813         hir_visit::walk_decl(self, d);
814     }
815
816     fn visit_generic_param(&mut self, p: &'tcx hir::GenericParam) {
817         run_lints!(self, check_generic_param, late_passes, p);
818         hir_visit::walk_generic_param(self, p);
819     }
820
821     fn visit_generics(&mut self, g: &'tcx hir::Generics) {
822         run_lints!(self, check_generics, late_passes, g);
823         hir_visit::walk_generics(self, g);
824     }
825
826     fn visit_where_predicate(&mut self, p: &'tcx hir::WherePredicate) {
827         run_lints!(self, check_where_predicate, late_passes, p);
828         hir_visit::walk_where_predicate(self, p);
829     }
830
831     fn visit_poly_trait_ref(&mut self, t: &'tcx hir::PolyTraitRef,
832                             m: hir::TraitBoundModifier) {
833         run_lints!(self, check_poly_trait_ref, late_passes, t, m);
834         hir_visit::walk_poly_trait_ref(self, t, m);
835     }
836
837     fn visit_trait_item(&mut self, trait_item: &'tcx hir::TraitItem) {
838         let generics = self.generics.take();
839         self.generics = Some(&trait_item.generics);
840         self.with_lint_attrs(trait_item.id, &trait_item.attrs, |cx| {
841             cx.with_param_env(trait_item.id, |cx| {
842                 run_lints!(cx, check_trait_item, late_passes, trait_item);
843                 hir_visit::walk_trait_item(cx, trait_item);
844                 run_lints!(cx, check_trait_item_post, late_passes, trait_item);
845             });
846         });
847         self.generics = generics;
848     }
849
850     fn visit_impl_item(&mut self, impl_item: &'tcx hir::ImplItem) {
851         let generics = self.generics.take();
852         self.generics = Some(&impl_item.generics);
853         self.with_lint_attrs(impl_item.id, &impl_item.attrs, |cx| {
854             cx.with_param_env(impl_item.id, |cx| {
855                 run_lints!(cx, check_impl_item, late_passes, impl_item);
856                 hir_visit::walk_impl_item(cx, impl_item);
857                 run_lints!(cx, check_impl_item_post, late_passes, impl_item);
858             });
859         });
860         self.generics = generics;
861     }
862
863     fn visit_lifetime(&mut self, lt: &'tcx hir::Lifetime) {
864         run_lints!(self, check_lifetime, late_passes, lt);
865         hir_visit::walk_lifetime(self, lt);
866     }
867
868     fn visit_path(&mut self, p: &'tcx hir::Path, id: ast::NodeId) {
869         run_lints!(self, check_path, late_passes, p, id);
870         hir_visit::walk_path(self, p);
871     }
872
873     fn visit_attribute(&mut self, attr: &'tcx ast::Attribute) {
874         run_lints!(self, check_attribute, late_passes, attr);
875     }
876 }
877
878 impl<'a> ast_visit::Visitor<'a> for EarlyContext<'a> {
879     fn visit_item(&mut self, it: &'a ast::Item) {
880         self.with_lint_attrs(it.id, &it.attrs, |cx| {
881             run_lints!(cx, check_item, early_passes, it);
882             ast_visit::walk_item(cx, it);
883             run_lints!(cx, check_item_post, early_passes, it);
884         })
885     }
886
887     fn visit_foreign_item(&mut self, it: &'a ast::ForeignItem) {
888         self.with_lint_attrs(it.id, &it.attrs, |cx| {
889             run_lints!(cx, check_foreign_item, early_passes, it);
890             ast_visit::walk_foreign_item(cx, it);
891             run_lints!(cx, check_foreign_item_post, early_passes, it);
892         })
893     }
894
895     fn visit_pat(&mut self, p: &'a ast::Pat) {
896         run_lints!(self, check_pat, early_passes, p);
897         self.check_id(p.id);
898         ast_visit::walk_pat(self, p);
899     }
900
901     fn visit_expr(&mut self, e: &'a ast::Expr) {
902         self.with_lint_attrs(e.id, &e.attrs, |cx| {
903             run_lints!(cx, check_expr, early_passes, e);
904             ast_visit::walk_expr(cx, e);
905         })
906     }
907
908     fn visit_stmt(&mut self, s: &'a ast::Stmt) {
909         run_lints!(self, check_stmt, early_passes, s);
910         self.check_id(s.id);
911         ast_visit::walk_stmt(self, s);
912     }
913
914     fn visit_fn(&mut self, fk: ast_visit::FnKind<'a>, decl: &'a ast::FnDecl,
915                 span: Span, id: ast::NodeId) {
916         run_lints!(self, check_fn, early_passes, fk, decl, span, id);
917         self.check_id(id);
918         ast_visit::walk_fn(self, fk, decl, span);
919         run_lints!(self, check_fn_post, early_passes, fk, decl, span, id);
920     }
921
922     fn visit_variant_data(&mut self,
923                         s: &'a ast::VariantData,
924                         ident: ast::Ident,
925                         g: &'a ast::Generics,
926                         item_id: ast::NodeId,
927                         _: Span) {
928         run_lints!(self, check_struct_def, early_passes, s, ident, g, item_id);
929         self.check_id(s.id());
930         ast_visit::walk_struct_def(self, s);
931         run_lints!(self, check_struct_def_post, early_passes, s, ident, g, item_id);
932     }
933
934     fn visit_struct_field(&mut self, s: &'a ast::StructField) {
935         self.with_lint_attrs(s.id, &s.attrs, |cx| {
936             run_lints!(cx, check_struct_field, early_passes, s);
937             ast_visit::walk_struct_field(cx, s);
938         })
939     }
940
941     fn visit_variant(&mut self, v: &'a ast::Variant, g: &'a ast::Generics, item_id: ast::NodeId) {
942         self.with_lint_attrs(item_id, &v.node.attrs, |cx| {
943             run_lints!(cx, check_variant, early_passes, v, g);
944             ast_visit::walk_variant(cx, v, g, item_id);
945             run_lints!(cx, check_variant_post, early_passes, v, g);
946         })
947     }
948
949     fn visit_ty(&mut self, t: &'a ast::Ty) {
950         run_lints!(self, check_ty, early_passes, t);
951         self.check_id(t.id);
952         ast_visit::walk_ty(self, t);
953     }
954
955     fn visit_ident(&mut self, sp: Span, id: ast::Ident) {
956         run_lints!(self, check_ident, early_passes, sp, id);
957     }
958
959     fn visit_mod(&mut self, m: &'a ast::Mod, s: Span, _a: &[ast::Attribute], n: ast::NodeId) {
960         run_lints!(self, check_mod, early_passes, m, s, n);
961         self.check_id(n);
962         ast_visit::walk_mod(self, m);
963         run_lints!(self, check_mod_post, early_passes, m, s, n);
964     }
965
966     fn visit_local(&mut self, l: &'a ast::Local) {
967         self.with_lint_attrs(l.id, &l.attrs, |cx| {
968             run_lints!(cx, check_local, early_passes, l);
969             ast_visit::walk_local(cx, l);
970         })
971     }
972
973     fn visit_block(&mut self, b: &'a ast::Block) {
974         run_lints!(self, check_block, early_passes, b);
975         self.check_id(b.id);
976         ast_visit::walk_block(self, b);
977         run_lints!(self, check_block_post, early_passes, b);
978     }
979
980     fn visit_arm(&mut self, a: &'a ast::Arm) {
981         run_lints!(self, check_arm, early_passes, a);
982         ast_visit::walk_arm(self, a);
983     }
984
985     fn visit_expr_post(&mut self, e: &'a ast::Expr) {
986         run_lints!(self, check_expr_post, early_passes, e);
987     }
988
989     fn visit_generic_param(&mut self, param: &'a ast::GenericParam) {
990         run_lints!(self, check_generic_param, early_passes, param);
991         ast_visit::walk_generic_param(self, param);
992     }
993
994     fn visit_generics(&mut self, g: &'a ast::Generics) {
995         run_lints!(self, check_generics, early_passes, g);
996         ast_visit::walk_generics(self, g);
997     }
998
999     fn visit_where_predicate(&mut self, p: &'a ast::WherePredicate) {
1000         run_lints!(self, check_where_predicate, early_passes, p);
1001         ast_visit::walk_where_predicate(self, p);
1002     }
1003
1004     fn visit_poly_trait_ref(&mut self, t: &'a ast::PolyTraitRef, m: &'a ast::TraitBoundModifier) {
1005         run_lints!(self, check_poly_trait_ref, early_passes, t, m);
1006         ast_visit::walk_poly_trait_ref(self, t, m);
1007     }
1008
1009     fn visit_trait_item(&mut self, trait_item: &'a ast::TraitItem) {
1010         self.with_lint_attrs(trait_item.id, &trait_item.attrs, |cx| {
1011             run_lints!(cx, check_trait_item, early_passes, trait_item);
1012             ast_visit::walk_trait_item(cx, trait_item);
1013             run_lints!(cx, check_trait_item_post, early_passes, trait_item);
1014         });
1015     }
1016
1017     fn visit_impl_item(&mut self, impl_item: &'a ast::ImplItem) {
1018         self.with_lint_attrs(impl_item.id, &impl_item.attrs, |cx| {
1019             run_lints!(cx, check_impl_item, early_passes, impl_item);
1020             ast_visit::walk_impl_item(cx, impl_item);
1021             run_lints!(cx, check_impl_item_post, early_passes, impl_item);
1022         });
1023     }
1024
1025     fn visit_lifetime(&mut self, lt: &'a ast::Lifetime) {
1026         run_lints!(self, check_lifetime, early_passes, lt);
1027         self.check_id(lt.id);
1028     }
1029
1030     fn visit_path(&mut self, p: &'a ast::Path, id: ast::NodeId) {
1031         run_lints!(self, check_path, early_passes, p, id);
1032         self.check_id(id);
1033         ast_visit::walk_path(self, p);
1034     }
1035
1036     fn visit_attribute(&mut self, attr: &'a ast::Attribute) {
1037         run_lints!(self, check_attribute, early_passes, attr);
1038     }
1039
1040     fn visit_mac_def(&mut self, _mac: &'a ast::MacroDef, id: ast::NodeId) {
1041         self.check_id(id);
1042     }
1043 }
1044
1045
1046 /// Perform lint checking on a crate.
1047 ///
1048 /// Consumes the `lint_store` field of the `Session`.
1049 pub fn check_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) {
1050     let access_levels = &tcx.privacy_access_levels(LOCAL_CRATE);
1051
1052     let krate = tcx.hir.krate();
1053
1054     let mut cx = LateContext {
1055         tcx,
1056         tables: &ty::TypeckTables::empty(None),
1057         param_env: ty::ParamEnv::empty(),
1058         access_levels,
1059         lint_sess: LintSession::new(&tcx.sess.lint_store),
1060         last_ast_node_with_lint_attrs: ast::CRATE_NODE_ID,
1061         generics: None,
1062     };
1063
1064     // Visit the whole crate.
1065     cx.with_lint_attrs(ast::CRATE_NODE_ID, &krate.attrs, |cx| {
1066         // since the root module isn't visited as an item (because it isn't an
1067         // item), warn for it here.
1068         run_lints!(cx, check_crate, late_passes, krate);
1069
1070         hir_visit::walk_crate(cx, krate);
1071
1072         run_lints!(cx, check_crate_post, late_passes, krate);
1073     });
1074
1075     // Put the lint store levels and passes back in the session.
1076     cx.lint_sess.restore(&tcx.sess.lint_store);
1077 }
1078
1079 pub fn check_ast_crate(sess: &Session, krate: &ast::Crate) {
1080     let mut cx = EarlyContext::new(sess, krate);
1081
1082     // Visit the whole crate.
1083     cx.with_lint_attrs(ast::CRATE_NODE_ID, &krate.attrs, |cx| {
1084         // since the root module isn't visited as an item (because it isn't an
1085         // item), warn for it here.
1086         run_lints!(cx, check_crate, early_passes, krate);
1087
1088         ast_visit::walk_crate(cx, krate);
1089
1090         run_lints!(cx, check_crate_post, early_passes, krate);
1091     });
1092
1093     // Put the lint store levels and passes back in the session.
1094     cx.lint_sess.restore(&sess.lint_store);
1095
1096     // All of the buffered lints should have been emitted at this point.
1097     // If not, that means that we somehow buffered a lint for a node id
1098     // that was not lint-checked (perhaps it doesn't exist?). This is a bug.
1099     //
1100     // Rustdoc runs everybody-loops before the early lints and removes
1101     // function bodies, so it's totally possible for linted
1102     // node ids to not exist (e.g. macros defined within functions for the
1103     // unused_macro lint) anymore. So we only run this check
1104     // when we're not in rustdoc mode. (see issue #47639)
1105     if !sess.opts.actually_rustdoc {
1106         for (_id, lints) in cx.buffered.map {
1107             for early_lint in lints {
1108                 sess.delay_span_bug(early_lint.span, "failed to process buffered lint here");
1109             }
1110         }
1111     }
1112 }
1113
1114 impl Encodable for LintId {
1115     fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
1116         s.emit_str(&self.lint.name.to_lowercase())
1117     }
1118 }
1119
1120 impl Decodable for LintId {
1121     #[inline]
1122     fn decode<D: Decoder>(d: &mut D) -> Result<LintId, D::Error> {
1123         let s = d.read_str()?;
1124         ty::tls::with(|tcx| {
1125             match tcx.sess.lint_store.borrow().find_lints(&s) {
1126                 Ok(ids) => {
1127                     if ids.len() != 0 {
1128                         panic!("invalid lint-id `{}`", s);
1129                     }
1130                     Ok(ids[0])
1131                 }
1132                 Err(_) => panic!("invalid lint-id `{}`", s),
1133             }
1134         })
1135     }
1136 }