Skip to main content

rustc_lint/
early.rs

1//! Implementation of the early lint pass.
2//!
3//! The early lint pass works on AST nodes after macro expansion and name
4//! resolution, just before AST lowering. These lints are for purely
5//! syntactical lints.
6
7use rustc_ast::visit::{self as ast_visit, Visitor, walk_list};
8use rustc_ast::{self as ast, AttrVec, HasAttrs};
9use rustc_data_structures::stack::ensure_sufficient_stack;
10use rustc_errors::{BufferedEarlyLint, DecorateDiagCompat, LintBuffer};
11use rustc_feature::Features;
12use rustc_middle::ty::{RegisteredTools, TyCtxt};
13use rustc_session::Session;
14use rustc_session::lint::LintPass;
15use rustc_span::{Ident, Span};
16use tracing::debug;
17
18use crate::context::{EarlyContext, LintContext, LintStore};
19use crate::passes::{EarlyLintPass, EarlyLintPassObject};
20use crate::{DecorateAttrLint, DiagAndSess};
21
22pub(super) mod diagnostics;
23
24macro_rules! lint_callback { ($cx:expr, $f:ident, $($args:expr),*) => ({
25    $cx.pass.$f(&$cx.context, $($args),*);
26}) }
27
28/// Implements the AST traversal for early lint passes. `T` provides the
29/// `check_*` methods.
30pub struct EarlyContextAndPass<'ecx, 'tcx, T: EarlyLintPass> {
31    context: EarlyContext<'ecx>,
32    tcx: Option<TyCtxt<'tcx>>,
33    pass: T,
34}
35
36impl<'ecx, 'tcx, T: EarlyLintPass> EarlyContextAndPass<'ecx, 'tcx, T> {
37    fn check_id(&mut self, id: ast::NodeId) {
38        for early_lint in self.context.buffered.take(id) {
39            let BufferedEarlyLint { span, node_id: _, lint_id, diagnostic } = early_lint;
40            match diagnostic {
41                DecorateDiagCompat::Builtin(b) => {
42                    self.context.opt_span_lint(
43                        lint_id.lint,
44                        span,
45                        DecorateAttrLint {
46                            sess: self.context.sess(),
47                            tcx: self.tcx,
48                            diagnostic: &b,
49                        },
50                    );
51                }
52                DecorateDiagCompat::Dynamic(callback) => {
53                    self.context.opt_span_lint(
54                        lint_id.lint,
55                        span,
56                        DiagAndSess { callback, sess: self.context.sess() },
57                    );
58                }
59            }
60        }
61    }
62
63    /// Merge the lints specified by any lint attributes into the
64    /// current lint context, call the provided function, then reset the
65    /// lints in effect to their previous state.
66    fn with_lint_attrs<F>(&mut self, id: ast::NodeId, attrs: &'_ [ast::Attribute], f: F)
67    where
68        F: FnOnce(&mut Self),
69    {
70        let is_crate_node = id == ast::CRATE_NODE_ID;
71        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_lint/src/early.rs:71",
                        "rustc_lint::early", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_lint/src/early.rs"),
                        ::tracing_core::__macro_support::Option::Some(71u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_lint::early"),
                        ::tracing_core::field::FieldSet::new(&["id"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&id) as
                                            &dyn Value))])
            });
    } else { ; }
};debug!(?id);
72        let push = self.context.builder.push(attrs, is_crate_node, None);
73
74        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_lint/src/early.rs:74",
                        "rustc_lint::early", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_lint/src/early.rs"),
                        ::tracing_core::__macro_support::Option::Some(74u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_lint::early"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("early context: enter_attrs({0:?})",
                                                    attrs) as &dyn Value))])
            });
    } else { ; }
};debug!("early context: enter_attrs({:?})", attrs);
75        { self.pass.check_attributes(&self.context, attrs); };lint_callback!(self, check_attributes, attrs);
76        ensure_sufficient_stack(|| f(self));
77        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_lint/src/early.rs:77",
                        "rustc_lint::early", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_lint/src/early.rs"),
                        ::tracing_core::__macro_support::Option::Some(77u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_lint::early"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("early context: exit_attrs({0:?})",
                                                    attrs) as &dyn Value))])
            });
    } else { ; }
};debug!("early context: exit_attrs({:?})", attrs);
78        { self.pass.check_attributes_post(&self.context, attrs); };lint_callback!(self, check_attributes_post, attrs);
79        self.context.builder.pop(push);
80    }
81}
82
83impl<'ast, 'ecx, 'tcx, T: EarlyLintPass> ast_visit::Visitor<'ast>
84    for EarlyContextAndPass<'ecx, 'tcx, T>
85{
86    fn visit_id(&mut self, id: rustc_ast::NodeId) {
87        self.check_id(id);
88    }
89
90    fn visit_param(&mut self, param: &'ast ast::Param) {
91        self.with_lint_attrs(param.id, &param.attrs, |cx| {
92            { cx.pass.check_param(&cx.context, param); };lint_callback!(cx, check_param, param);
93            ast_visit::walk_param(cx, param);
94        });
95    }
96
97    fn visit_item(&mut self, it: &'ast ast::Item) {
98        self.with_lint_attrs(it.id, &it.attrs, |cx| {
99            { cx.pass.check_item(&cx.context, it); };lint_callback!(cx, check_item, it);
100            ast_visit::walk_item(cx, it);
101            { cx.pass.check_item_post(&cx.context, it); };lint_callback!(cx, check_item_post, it);
102        })
103    }
104
105    fn visit_foreign_item(&mut self, it: &'ast ast::ForeignItem) {
106        self.with_lint_attrs(it.id, &it.attrs, |cx| {
107            ast_visit::walk_item(cx, it);
108        })
109    }
110
111    fn visit_pat(&mut self, p: &'ast ast::Pat) {
112        { self.pass.check_pat(&self.context, p); };lint_callback!(self, check_pat, p);
113        ast_visit::walk_pat(self, p);
114        { self.pass.check_pat_post(&self.context, p); };lint_callback!(self, check_pat_post, p);
115    }
116
117    fn visit_pat_field(&mut self, field: &'ast ast::PatField) {
118        self.with_lint_attrs(field.id, &field.attrs, |cx| {
119            ast_visit::walk_pat_field(cx, field);
120        });
121    }
122
123    fn visit_expr(&mut self, e: &'ast ast::Expr) {
124        self.with_lint_attrs(e.id, &e.attrs, |cx| {
125            { cx.pass.check_expr(&cx.context, e); };lint_callback!(cx, check_expr, e);
126            ast_visit::walk_expr(cx, e);
127            { cx.pass.check_expr_post(&cx.context, e); };lint_callback!(cx, check_expr_post, e);
128        })
129    }
130
131    fn visit_expr_field(&mut self, f: &'ast ast::ExprField) {
132        self.with_lint_attrs(f.id, &f.attrs, |cx| {
133            ast_visit::walk_expr_field(cx, f);
134        })
135    }
136
137    fn visit_stmt(&mut self, s: &'ast ast::Stmt) {
138        // Add the statement's lint attributes to our
139        // current state when checking the statement itself.
140        // This allows us to handle attributes like
141        // `#[allow(unused_doc_comments)]`, which apply to
142        // sibling attributes on the same target
143        //
144        // Note that statements get their attributes from
145        // the AST struct that they wrap (e.g. an item)
146        self.with_lint_attrs(s.id, s.attrs(), |cx| {
147            { cx.pass.check_stmt(&cx.context, s); };lint_callback!(cx, check_stmt, s);
148            ast_visit::walk_stmt(cx, s);
149        });
150    }
151
152    fn visit_fn(&mut self, fk: ast_visit::FnKind<'ast>, _: &AttrVec, span: Span, id: ast::NodeId) {
153        { self.pass.check_fn(&self.context, fk, span, id); };lint_callback!(self, check_fn, fk, span, id);
154        ast_visit::walk_fn(self, fk);
155    }
156
157    fn visit_field_def(&mut self, s: &'ast ast::FieldDef) {
158        self.with_lint_attrs(s.id, &s.attrs, |cx| {
159            ast_visit::walk_field_def(cx, s);
160        })
161    }
162
163    fn visit_variant(&mut self, v: &'ast ast::Variant) {
164        self.with_lint_attrs(v.id, &v.attrs, |cx| {
165            { cx.pass.check_variant(&cx.context, v); };lint_callback!(cx, check_variant, v);
166            ast_visit::walk_variant(cx, v);
167        })
168    }
169
170    fn visit_ty(&mut self, t: &'ast ast::Ty) {
171        { self.pass.check_ty(&self.context, t); };lint_callback!(self, check_ty, t);
172        ast_visit::walk_ty(self, t);
173    }
174
175    fn visit_ident(&mut self, ident: &Ident) {
176        { self.pass.check_ident(&self.context, ident); };lint_callback!(self, check_ident, ident);
177    }
178
179    fn visit_local(&mut self, l: &'ast ast::Local) {
180        self.with_lint_attrs(l.id, &l.attrs, |cx| {
181            { cx.pass.check_local(&cx.context, l); };lint_callback!(cx, check_local, l);
182            ast_visit::walk_local(cx, l);
183        })
184    }
185
186    fn visit_block(&mut self, b: &'ast ast::Block) {
187        { self.pass.check_block(&self.context, b); };lint_callback!(self, check_block, b);
188        ast_visit::walk_block(self, b);
189    }
190
191    fn visit_arm(&mut self, a: &'ast ast::Arm) {
192        self.with_lint_attrs(a.id, &a.attrs, |cx| {
193            { cx.pass.check_arm(&cx.context, a); };lint_callback!(cx, check_arm, a);
194            ast_visit::walk_arm(cx, a);
195        })
196    }
197
198    fn visit_generic_arg(&mut self, arg: &'ast ast::GenericArg) {
199        { self.pass.check_generic_arg(&self.context, arg); };lint_callback!(self, check_generic_arg, arg);
200        ast_visit::walk_generic_arg(self, arg);
201    }
202
203    fn visit_generic_param(&mut self, param: &'ast ast::GenericParam) {
204        self.with_lint_attrs(param.id, &param.attrs, |cx| {
205            { cx.pass.check_generic_param(&cx.context, param); };lint_callback!(cx, check_generic_param, param);
206            ast_visit::walk_generic_param(cx, param);
207        });
208    }
209
210    fn visit_generics(&mut self, g: &'ast ast::Generics) {
211        { self.pass.check_generics(&self.context, g); };lint_callback!(self, check_generics, g);
212        ast_visit::walk_generics(self, g);
213    }
214
215    fn visit_where_predicate(&mut self, p: &'ast ast::WherePredicate) {
216        { self.pass.enter_where_predicate(&self.context, p); };lint_callback!(self, enter_where_predicate, p);
217        ast_visit::walk_where_predicate(self, p);
218        { self.pass.exit_where_predicate(&self.context, p); };lint_callback!(self, exit_where_predicate, p);
219    }
220
221    fn visit_poly_trait_ref(&mut self, t: &'ast ast::PolyTraitRef) {
222        { self.pass.check_poly_trait_ref(&self.context, t); };lint_callback!(self, check_poly_trait_ref, t);
223        ast_visit::walk_poly_trait_ref(self, t);
224    }
225
226    fn visit_assoc_item(&mut self, item: &'ast ast::AssocItem, ctxt: ast_visit::AssocCtxt) {
227        self.with_lint_attrs(item.id, &item.attrs, |cx| {
228            match ctxt {
229                ast_visit::AssocCtxt::Trait => {
230                    { cx.pass.check_trait_item(&cx.context, item); };lint_callback!(cx, check_trait_item, item);
231                }
232                ast_visit::AssocCtxt::Impl { .. } => {
233                    { cx.pass.check_impl_item(&cx.context, item); };lint_callback!(cx, check_impl_item, item);
234                }
235            }
236            ast_visit::walk_assoc_item(cx, item, ctxt);
237            match ctxt {
238                ast_visit::AssocCtxt::Trait => {
239                    { cx.pass.check_trait_item_post(&cx.context, item); };lint_callback!(cx, check_trait_item_post, item);
240                }
241                ast_visit::AssocCtxt::Impl { .. } => {
242                    { cx.pass.check_impl_item_post(&cx.context, item); };lint_callback!(cx, check_impl_item_post, item);
243                }
244            }
245        });
246    }
247
248    fn visit_attribute(&mut self, attr: &'ast ast::Attribute) {
249        { self.pass.check_attribute(&self.context, attr); };lint_callback!(self, check_attribute, attr);
250        ast_visit::walk_attribute(self, attr);
251    }
252
253    fn visit_macro_def(&mut self, mac: &'ast ast::MacroDef) {
254        { self.pass.check_mac_def(&self.context, mac); };lint_callback!(self, check_mac_def, mac);
255    }
256
257    fn visit_mac_call(&mut self, mac: &'ast ast::MacCall) {
258        { self.pass.check_mac(&self.context, mac); };lint_callback!(self, check_mac, mac);
259        ast_visit::walk_mac(self, mac);
260    }
261}
262
263// Combines multiple lint passes into a single pass, at runtime. Each
264// `check_foo` method in `$methods` within this pass simply calls `check_foo`
265// once per `$pass`. Compare with `declare_combined_early_lint_pass`, which is
266// similar, but combines lint passes at compile time.
267struct RuntimeCombinedEarlyLintPass<'a> {
268    passes: &'a mut [EarlyLintPassObject],
269}
270
271#[allow(rustc::lint_pass_impl_without_macro)]
272impl LintPass for RuntimeCombinedEarlyLintPass<'_> {
273    fn name(&self) -> &'static str {
274        ::core::panicking::panic("explicit panic")panic!()
275    }
276    fn get_lints(&self) -> crate::LintVec {
277        ::core::panicking::panic("explicit panic")panic!()
278    }
279}
280
281macro_rules! impl_early_lint_pass {
282    ([], [$($(#[$attr:meta])* fn $f:ident($($param:ident: $arg:ty),*);)*]) => (
283        impl EarlyLintPass for RuntimeCombinedEarlyLintPass<'_> {
284            $(fn $f(&mut self, context: &EarlyContext<'_>, $($param: $arg),*) {
285                for pass in self.passes.iter_mut() {
286                    pass.$f(context, $($param),*);
287                }
288            })*
289        }
290    )
291}
292
293impl EarlyLintPass for RuntimeCombinedEarlyLintPass<'_> {
    fn check_param(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Param) {
        for pass in self.passes.iter_mut() { pass.check_param(context, a); }
    }
    fn check_ident(&mut self, context: &EarlyContext<'_>,
        a: &rustc_span::Ident) {
        for pass in self.passes.iter_mut() { pass.check_ident(context, a); }
    }
    fn check_crate(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Crate) {
        for pass in self.passes.iter_mut() { pass.check_crate(context, a); }
    }
    fn check_crate_post(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Crate) {
        for pass in self.passes.iter_mut() {
            pass.check_crate_post(context, a);
        }
    }
    fn check_item(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Item) {
        for pass in self.passes.iter_mut() { pass.check_item(context, a); }
    }
    fn check_item_post(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Item) {
        for pass in self.passes.iter_mut() {
            pass.check_item_post(context, a);
        }
    }
    fn check_local(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Local) {
        for pass in self.passes.iter_mut() { pass.check_local(context, a); }
    }
    fn check_block(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Block) {
        for pass in self.passes.iter_mut() { pass.check_block(context, a); }
    }
    fn check_stmt(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Stmt) {
        for pass in self.passes.iter_mut() { pass.check_stmt(context, a); }
    }
    fn check_arm(&mut self, context: &EarlyContext<'_>, a: &rustc_ast::Arm) {
        for pass in self.passes.iter_mut() { pass.check_arm(context, a); }
    }
    fn check_pat(&mut self, context: &EarlyContext<'_>, a: &rustc_ast::Pat) {
        for pass in self.passes.iter_mut() { pass.check_pat(context, a); }
    }
    fn check_pat_post(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Pat) {
        for pass in self.passes.iter_mut() {
            pass.check_pat_post(context, a);
        }
    }
    fn check_expr(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Expr) {
        for pass in self.passes.iter_mut() { pass.check_expr(context, a); }
    }
    fn check_expr_post(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Expr) {
        for pass in self.passes.iter_mut() {
            pass.check_expr_post(context, a);
        }
    }
    fn check_ty(&mut self, context: &EarlyContext<'_>, a: &rustc_ast::Ty) {
        for pass in self.passes.iter_mut() { pass.check_ty(context, a); }
    }
    fn check_generic_arg(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::GenericArg) {
        for pass in self.passes.iter_mut() {
            pass.check_generic_arg(context, a);
        }
    }
    fn check_generic_param(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::GenericParam) {
        for pass in self.passes.iter_mut() {
            pass.check_generic_param(context, a);
        }
    }
    fn check_generics(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Generics) {
        for pass in self.passes.iter_mut() {
            pass.check_generics(context, a);
        }
    }
    fn check_poly_trait_ref(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::PolyTraitRef) {
        for pass in self.passes.iter_mut() {
            pass.check_poly_trait_ref(context, a);
        }
    }
    fn check_fn(&mut self, context: &EarlyContext<'_>,
        a: rustc_ast::visit::FnKind<'_>, c: rustc_span::Span,
        d_: rustc_ast::NodeId) {
        for pass in self.passes.iter_mut() {
            pass.check_fn(context, a, c, d_);
        }
    }
    fn check_trait_item(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::AssocItem) {
        for pass in self.passes.iter_mut() {
            pass.check_trait_item(context, a);
        }
    }
    fn check_trait_item_post(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::AssocItem) {
        for pass in self.passes.iter_mut() {
            pass.check_trait_item_post(context, a);
        }
    }
    fn check_impl_item(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::AssocItem) {
        for pass in self.passes.iter_mut() {
            pass.check_impl_item(context, a);
        }
    }
    fn check_impl_item_post(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::AssocItem) {
        for pass in self.passes.iter_mut() {
            pass.check_impl_item_post(context, a);
        }
    }
    fn check_variant(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Variant) {
        for pass in self.passes.iter_mut() { pass.check_variant(context, a); }
    }
    fn check_attribute(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::Attribute) {
        for pass in self.passes.iter_mut() {
            pass.check_attribute(context, a);
        }
    }
    fn check_attributes(&mut self, context: &EarlyContext<'_>,
        a: &[rustc_ast::Attribute]) {
        for pass in self.passes.iter_mut() {
            pass.check_attributes(context, a);
        }
    }
    fn check_attributes_post(&mut self, context: &EarlyContext<'_>,
        a: &[rustc_ast::Attribute]) {
        for pass in self.passes.iter_mut() {
            pass.check_attributes_post(context, a);
        }
    }
    fn check_mac_def(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::MacroDef) {
        for pass in self.passes.iter_mut() { pass.check_mac_def(context, a); }
    }
    fn check_mac(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::MacCall) {
        for pass in self.passes.iter_mut() { pass.check_mac(context, a); }
    }
    fn enter_where_predicate(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::WherePredicate) {
        for pass in self.passes.iter_mut() {
            pass.enter_where_predicate(context, a);
        }
    }
    fn exit_where_predicate(&mut self, context: &EarlyContext<'_>,
        a: &rustc_ast::WherePredicate) {
        for pass in self.passes.iter_mut() {
            pass.exit_where_predicate(context, a);
        }
    }
}crate::early_lint_methods!(impl_early_lint_pass, []);
294
295/// Early lints work on different nodes - either on the crate root, or on freshly loaded modules.
296/// This trait generalizes over those nodes.
297pub trait EarlyCheckNode<'a>: Copy {
298    fn id(self) -> ast::NodeId;
299    fn attrs(self) -> &'a [ast::Attribute];
300    fn check<'ecx, 'tcx, T: EarlyLintPass>(self, cx: &mut EarlyContextAndPass<'ecx, 'tcx, T>);
301}
302
303impl<'a> EarlyCheckNode<'a> for (&'a ast::Crate, &'a [ast::Attribute]) {
304    fn id(self) -> ast::NodeId {
305        ast::CRATE_NODE_ID
306    }
307    fn attrs(self) -> &'a [ast::Attribute] {
308        self.1
309    }
310    fn check<'ecx, 'tcx, T: EarlyLintPass>(self, cx: &mut EarlyContextAndPass<'ecx, 'tcx, T>) {
311        { cx.pass.check_crate(&cx.context, self.0); };lint_callback!(cx, check_crate, self.0);
312        ast_visit::walk_crate(cx, self.0);
313        { cx.pass.check_crate_post(&cx.context, self.0); };lint_callback!(cx, check_crate_post, self.0);
314    }
315}
316
317impl<'a> EarlyCheckNode<'a> for (ast::NodeId, &'a [ast::Attribute], &'a [Box<ast::Item>]) {
318    fn id(self) -> ast::NodeId {
319        self.0
320    }
321    fn attrs(self) -> &'a [ast::Attribute] {
322        self.1
323    }
324    fn check<'ecx, 'tcx, T: EarlyLintPass>(self, cx: &mut EarlyContextAndPass<'ecx, 'tcx, T>) {
325        for elem in self.1 {
    match ::rustc_ast_ir::visit::VisitorResult::branch(cx.visit_attribute(elem))
        {
        core::ops::ControlFlow::Continue(()) =>
            (),
            #[allow(unreachable_code)]
            core::ops::ControlFlow::Break(r) => {
            return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
        }
    };
};walk_list!(cx, visit_attribute, self.1);
326        for elem in self.2 {
    match ::rustc_ast_ir::visit::VisitorResult::branch(cx.visit_item(elem)) {
        core::ops::ControlFlow::Continue(()) =>
            (),
            #[allow(unreachable_code)]
            core::ops::ControlFlow::Break(r) => {
            return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
        }
    };
};walk_list!(cx, visit_item, self.2);
327    }
328}
329
330pub fn check_ast_node<'a>(
331    sess: &Session,
332    tcx: Option<TyCtxt<'_>>,
333    features: &Features,
334    pre_expansion: bool,
335    lint_store: &LintStore,
336    registered_tools: &RegisteredTools,
337    lint_buffer: Option<LintBuffer>,
338    builtin_lints: impl EarlyLintPass + 'static,
339    check_node: impl EarlyCheckNode<'a>,
340) {
341    let context = EarlyContext::new(
342        sess,
343        features,
344        !pre_expansion,
345        lint_store,
346        registered_tools,
347        lint_buffer.unwrap_or_default(),
348    );
349
350    // Note: `passes` is often empty. In that case, it's faster to run
351    // `builtin_lints` directly rather than bundling it up into the
352    // `RuntimeCombinedEarlyLintPass`.
353    let passes =
354        if pre_expansion { &lint_store.pre_expansion_passes } else { &lint_store.early_passes };
355    if passes.is_empty() {
356        check_ast_node_inner(sess, tcx, check_node, context, builtin_lints);
357    } else {
358        let mut passes: Vec<_> = passes.iter().map(|mk_pass| (mk_pass)()).collect();
359        passes.push(Box::new(builtin_lints));
360        let pass = RuntimeCombinedEarlyLintPass { passes: &mut passes[..] };
361        check_ast_node_inner(sess, tcx, check_node, context, pass);
362    }
363}
364
365fn check_ast_node_inner<'a, T: EarlyLintPass>(
366    sess: &Session,
367    tcx: Option<TyCtxt<'_>>,
368    check_node: impl EarlyCheckNode<'a>,
369    context: EarlyContext<'_>,
370    pass: T,
371) {
372    let mut cx = EarlyContextAndPass { context, tcx, pass };
373
374    cx.with_lint_attrs(check_node.id(), check_node.attrs(), |cx| check_node.check(cx));
375
376    // All of the buffered lints should have been emitted at this point.
377    // If not, that means that we somehow buffered a lint for a node id
378    // that was not lint-checked (perhaps it doesn't exist?). This is a bug.
379    for (id, lints) in cx.context.buffered.map {
380        if !lints.is_empty() {
381            if !sess.dcx().has_errors().is_some() {
    {
        ::core::panicking::panic_fmt(format_args!("failed to process buffered lint here (dummy = {0})",
                id == ast::DUMMY_NODE_ID));
    }
};assert!(
382                sess.dcx().has_errors().is_some(),
383                "failed to process buffered lint here (dummy = {})",
384                id == ast::DUMMY_NODE_ID
385            );
386            break;
387        }
388    }
389}