Skip to main content

rustc_lint/
internal.rs

1//! Some lints that are only useful in the compiler or crates that use compiler internals, such as
2//! Clippy.
3
4use rustc_ast as ast;
5use rustc_ast::{Pat, PatKind, Path};
6use rustc_hir as hir;
7use rustc_hir::def::Res;
8use rustc_hir::def_id::DefId;
9use rustc_hir::{Expr, ExprKind, HirId, find_attr};
10use rustc_middle::ty::{self, GenericArgsRef, PredicatePolarity};
11use rustc_session::{declare_lint_pass, declare_tool_lint};
12use rustc_span::hygiene::{ExpnKind, MacroKind};
13use rustc_span::{Span, sym};
14
15use crate::lints::{
16    AttributeKindInFindAttr, BadOptAccessDiag, DefaultHashTypesDiag,
17    ImplicitSysrootCrateImportDiag, LintPassByHand, NonGlobImportTypeIrInherent, QueryInstability,
18    QueryUntracked, RustcMustMatchExhaustivelyNotExhaustive, SpanUseEqCtxtDiag,
19    SymbolInternStringLiteralDiag, TyQualified, TykindDiag, TykindKind, TypeIrDirectUse,
20    TypeIrInherentUsage, TypeIrTraitUsage,
21};
22use crate::{EarlyContext, EarlyLintPass, LateContext, LateLintPass, LintContext};
23
24#[doc =
r" The `default_hash_type` lint detects use of [`std::collections::HashMap`] and"]
#[doc =
r" [`std::collections::HashSet`], suggesting the use of `FxHashMap`/`FxHashSet`."]
#[doc = r""]
#[doc =
r" This can help as `FxHasher` can perform better than the default hasher. DOS protection is"]
#[doc = r" not required as input is assumed to be trusted."]
pub static DEFAULT_HASH_TYPES: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::DEFAULT_HASH_TYPES",
            default_level: ::rustc_lint_defs::Allow,
            desc: "forbid HashMap and HashSet and suggest the FxHash* variants",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
25    /// The `default_hash_type` lint detects use of [`std::collections::HashMap`] and
26    /// [`std::collections::HashSet`], suggesting the use of `FxHashMap`/`FxHashSet`.
27    ///
28    /// This can help as `FxHasher` can perform better than the default hasher. DOS protection is
29    /// not required as input is assumed to be trusted.
30    pub rustc::DEFAULT_HASH_TYPES,
31    Allow,
32    "forbid HashMap and HashSet and suggest the FxHash* variants",
33    report_in_external_macro: true
34}
35
36pub struct DefaultHashTypes;
#[automatically_derived]
impl ::core::marker::Copy for DefaultHashTypes { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for DefaultHashTypes { }
#[automatically_derived]
impl ::core::clone::Clone for DefaultHashTypes {
    #[inline]
    fn clone(&self) -> DefaultHashTypes { *self }
}
impl ::rustc_lint_defs::LintPass for DefaultHashTypes {
    fn name(&self) -> &'static str { "DefaultHashTypes" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [DEFAULT_HASH_TYPES]))
    }
}
impl DefaultHashTypes {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [DEFAULT_HASH_TYPES]))
    }
}declare_lint_pass!(DefaultHashTypes => [DEFAULT_HASH_TYPES]);
37
38impl LateLintPass<'_> for DefaultHashTypes {
39    fn check_path(&mut self, cx: &LateContext<'_>, path: &hir::Path<'_>, hir_id: HirId) {
40        let Res::Def(rustc_hir::def::DefKind::Struct, def_id) = path.res else { return };
41        if #[allow(non_exhaustive_omitted_patterns)] match cx.tcx.hir_node(hir_id) {
    hir::Node::Item(hir::Item { kind: hir::ItemKind::Use(..), .. }) => true,
    _ => false,
}matches!(
42            cx.tcx.hir_node(hir_id),
43            hir::Node::Item(hir::Item { kind: hir::ItemKind::Use(..), .. })
44        ) {
45            // Don't lint imports, only actual usages.
46            return;
47        }
48        let preferred = match cx.tcx.get_diagnostic_name(def_id) {
49            Some(sym::HashMap) => "FxHashMap",
50            Some(sym::HashSet) => "FxHashSet",
51            _ => return,
52        };
53        cx.emit_span_lint(
54            DEFAULT_HASH_TYPES,
55            path.span,
56            DefaultHashTypesDiag { preferred, used: cx.tcx.item_name(def_id) },
57        );
58    }
59}
60
61#[doc =
r" The `potential_query_instability` lint detects use of methods which can lead to"]
#[doc = r" potential query instability, such as iterating over a `HashMap`."]
#[doc = r""]
#[doc =
r" Due to the [incremental compilation](https://rustc-dev-guide.rust-lang.org/queries/incremental-compilation.html) model,"]
#[doc =
r" queries must return deterministic, stable results. `HashMap` iteration order can change"]
#[doc =
r" between compilations, and will introduce instability if query results expose the order."]
pub static POTENTIAL_QUERY_INSTABILITY: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::POTENTIAL_QUERY_INSTABILITY",
            default_level: ::rustc_lint_defs::Allow,
            desc: "require explicit opt-in when using potentially unstable methods or functions",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
62    /// The `potential_query_instability` lint detects use of methods which can lead to
63    /// potential query instability, such as iterating over a `HashMap`.
64    ///
65    /// Due to the [incremental compilation](https://rustc-dev-guide.rust-lang.org/queries/incremental-compilation.html) model,
66    /// queries must return deterministic, stable results. `HashMap` iteration order can change
67    /// between compilations, and will introduce instability if query results expose the order.
68    pub rustc::POTENTIAL_QUERY_INSTABILITY,
69    Allow,
70    "require explicit opt-in when using potentially unstable methods or functions",
71    report_in_external_macro: true
72}
73
74#[doc =
r" The `untracked_query_information` lint detects use of methods which leak information not"]
#[doc =
r" tracked by the query system, such as whether a `Steal<T>` value has already been stolen. In"]
#[doc =
r" order not to break incremental compilation, such methods must be used very carefully or not"]
#[doc = r" at all."]
pub static UNTRACKED_QUERY_INFORMATION: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::UNTRACKED_QUERY_INFORMATION",
            default_level: ::rustc_lint_defs::Allow,
            desc: "require explicit opt-in when accessing information not tracked by the query system",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
75    /// The `untracked_query_information` lint detects use of methods which leak information not
76    /// tracked by the query system, such as whether a `Steal<T>` value has already been stolen. In
77    /// order not to break incremental compilation, such methods must be used very carefully or not
78    /// at all.
79    pub rustc::UNTRACKED_QUERY_INFORMATION,
80    Allow,
81    "require explicit opt-in when accessing information not tracked by the query system",
82    report_in_external_macro: true
83}
84
85pub struct QueryStability;
#[automatically_derived]
impl ::core::marker::Copy for QueryStability { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for QueryStability { }
#[automatically_derived]
impl ::core::clone::Clone for QueryStability {
    #[inline]
    fn clone(&self) -> QueryStability { *self }
}
impl ::rustc_lint_defs::LintPass for QueryStability {
    fn name(&self) -> &'static str { "QueryStability" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [POTENTIAL_QUERY_INSTABILITY, UNTRACKED_QUERY_INFORMATION]))
    }
}
impl QueryStability {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [POTENTIAL_QUERY_INSTABILITY, UNTRACKED_QUERY_INFORMATION]))
    }
}declare_lint_pass!(QueryStability => [POTENTIAL_QUERY_INSTABILITY, UNTRACKED_QUERY_INFORMATION]);
86
87impl<'tcx> LateLintPass<'tcx> for QueryStability {
88    fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>) {
89        if let Some((callee_def_id, span, generic_args, _recv, _args)) =
90            get_callee_span_generic_args_and_args(cx, expr)
91            && let Ok(Some(instance)) =
92                ty::Instance::try_resolve(cx.tcx, cx.typing_env(), callee_def_id, generic_args)
93        {
94            let def_id = instance.def_id();
95            if {
        {
            'done:
                {
                for i in
                    ::rustc_hir::attrs::HasAttrs::get_attrs(def_id, &cx.tcx) {
                    #[allow(unused_imports)]
                    use rustc_hir::attrs::AttributeKind::*;
                    let i: &rustc_hir::Attribute = i;
                    match i {
                        rustc_hir::Attribute::Parsed(RustcLintQueryInstability) => {
                            break 'done Some(());
                        }
                        rustc_hir::Attribute::Unparsed(..) =>
                            {}
                            #[deny(unreachable_patterns)]
                            _ => {}
                    }
                }
                None
            }
        }
    }.is_some()find_attr!(cx.tcx, def_id, RustcLintQueryInstability) {
96                cx.emit_span_lint(
97                    POTENTIAL_QUERY_INSTABILITY,
98                    span,
99                    QueryInstability { query: cx.tcx.item_name(def_id) },
100                );
101            } else if has_unstable_into_iter_predicate(cx, callee_def_id, generic_args) {
102                let call_span = span.with_hi(expr.span.hi());
103                cx.emit_span_lint(
104                    POTENTIAL_QUERY_INSTABILITY,
105                    call_span,
106                    QueryInstability { query: sym::into_iter },
107                );
108            }
109
110            if {
        {
            'done:
                {
                for i in
                    ::rustc_hir::attrs::HasAttrs::get_attrs(def_id, &cx.tcx) {
                    #[allow(unused_imports)]
                    use rustc_hir::attrs::AttributeKind::*;
                    let i: &rustc_hir::Attribute = i;
                    match i {
                        rustc_hir::Attribute::Parsed(RustcLintUntrackedQueryInformation)
                            => {
                            break 'done Some(());
                        }
                        rustc_hir::Attribute::Unparsed(..) =>
                            {}
                            #[deny(unreachable_patterns)]
                            _ => {}
                    }
                }
                None
            }
        }
    }.is_some()find_attr!(cx.tcx, def_id, RustcLintUntrackedQueryInformation) {
111                cx.emit_span_lint(
112                    UNTRACKED_QUERY_INFORMATION,
113                    span,
114                    QueryUntracked { method: cx.tcx.item_name(def_id) },
115                );
116            }
117        }
118    }
119}
120
121fn has_unstable_into_iter_predicate<'tcx>(
122    cx: &LateContext<'tcx>,
123    callee_def_id: DefId,
124    generic_args: GenericArgsRef<'tcx>,
125) -> bool {
126    let Some(into_iterator_def_id) = cx.tcx.get_diagnostic_item(sym::IntoIterator) else {
127        return false;
128    };
129    let Some(into_iter_fn_def_id) = cx.tcx.lang_items().into_iter_fn() else {
130        return false;
131    };
132    let predicates = cx.tcx.predicates_of(callee_def_id).instantiate(cx.tcx, generic_args);
133    for (predicate, _) in predicates {
134        let Some(trait_pred) = predicate.as_trait_clause() else {
135            continue;
136        };
137        if trait_pred.def_id() != into_iterator_def_id
138            || trait_pred.polarity() != PredicatePolarity::Positive
139        {
140            continue;
141        }
142        // `IntoIterator::into_iter` has no additional method args.
143        let into_iter_fn_args =
144            cx.tcx.instantiate_bound_regions_with_erased(trait_pred.skip_norm_wip()).trait_ref.args;
145        let Ok(Some(instance)) = ty::Instance::try_resolve(
146            cx.tcx,
147            cx.typing_env(),
148            into_iter_fn_def_id,
149            into_iter_fn_args,
150        ) else {
151            continue;
152        };
153        // Does the input type's `IntoIterator` implementation have the
154        // `rustc_lint_query_instability` attribute on its `into_iter` method?
155        if {
        {
            'done:
                {
                for i in
                    ::rustc_hir::attrs::HasAttrs::get_attrs(instance.def_id(),
                        &cx.tcx) {
                    #[allow(unused_imports)]
                    use rustc_hir::attrs::AttributeKind::*;
                    let i: &rustc_hir::Attribute = i;
                    match i {
                        rustc_hir::Attribute::Parsed(RustcLintQueryInstability) => {
                            break 'done Some(());
                        }
                        rustc_hir::Attribute::Unparsed(..) =>
                            {}
                            #[deny(unreachable_patterns)]
                            _ => {}
                    }
                }
                None
            }
        }
    }.is_some()find_attr!(cx.tcx, instance.def_id(), RustcLintQueryInstability) {
156            return true;
157        }
158    }
159    false
160}
161
162/// Checks whether an expression is a function or method call and, if so, returns its `DefId`,
163/// `Span`, `GenericArgs`, and arguments. This is a slight augmentation of a similarly named Clippy
164/// function, `get_callee_generic_args_and_args`.
165fn get_callee_span_generic_args_and_args<'tcx>(
166    cx: &LateContext<'tcx>,
167    expr: &'tcx Expr<'tcx>,
168) -> Option<(DefId, Span, GenericArgsRef<'tcx>, Option<&'tcx Expr<'tcx>>, &'tcx [Expr<'tcx>])> {
169    if let ExprKind::Call(callee, args) = expr.kind
170        && let callee_ty = cx.typeck_results().expr_ty(callee)
171        && let ty::FnDef(callee_def_id, generic_args) = callee_ty.kind()
172    {
173        return Some((
174            *callee_def_id,
175            callee.span,
176            generic_args.no_bound_vars().unwrap(),
177            None,
178            args,
179        ));
180    }
181    if let ExprKind::MethodCall(segment, recv, args, _) = expr.kind
182        && let Some(method_def_id) = cx.typeck_results().type_dependent_def_id(expr.hir_id)
183    {
184        let generic_args = cx.typeck_results().node_args(expr.hir_id);
185        return Some((method_def_id, segment.ident.span, generic_args, Some(recv), args));
186    }
187    None
188}
189
190#[doc =
r" The `usage_of_ty_tykind` lint detects usages of `ty::TyKind::<kind>`,"]
#[doc = r" where `ty::<kind>` would suffice."]
pub static USAGE_OF_TY_TYKIND: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::USAGE_OF_TY_TYKIND",
            default_level: ::rustc_lint_defs::Allow,
            desc: "usage of `ty::TyKind` outside of the `ty::sty` module",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
191    /// The `usage_of_ty_tykind` lint detects usages of `ty::TyKind::<kind>`,
192    /// where `ty::<kind>` would suffice.
193    pub rustc::USAGE_OF_TY_TYKIND,
194    Allow,
195    "usage of `ty::TyKind` outside of the `ty::sty` module",
196    report_in_external_macro: true
197}
198
199#[doc = r" The `usage_of_qualified_ty` lint detects usages of `ty::TyKind`,"]
#[doc = r" where `Ty` should be used instead."]
pub static USAGE_OF_QUALIFIED_TY: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::USAGE_OF_QUALIFIED_TY",
            default_level: ::rustc_lint_defs::Allow,
            desc: "using `ty::{Ty,TyCtxt}` instead of importing it",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
200    /// The `usage_of_qualified_ty` lint detects usages of `ty::TyKind`,
201    /// where `Ty` should be used instead.
202    pub rustc::USAGE_OF_QUALIFIED_TY,
203    Allow,
204    "using `ty::{Ty,TyCtxt}` instead of importing it",
205    report_in_external_macro: true
206}
207
208pub struct TyTyKind;
#[automatically_derived]
impl ::core::marker::Copy for TyTyKind { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for TyTyKind { }
#[automatically_derived]
impl ::core::clone::Clone for TyTyKind {
    #[inline]
    fn clone(&self) -> TyTyKind { *self }
}
impl ::rustc_lint_defs::LintPass for TyTyKind {
    fn name(&self) -> &'static str { "TyTyKind" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [USAGE_OF_TY_TYKIND, USAGE_OF_QUALIFIED_TY]))
    }
}
impl TyTyKind {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [USAGE_OF_TY_TYKIND, USAGE_OF_QUALIFIED_TY]))
    }
}declare_lint_pass!(TyTyKind => [
209    USAGE_OF_TY_TYKIND,
210    USAGE_OF_QUALIFIED_TY,
211]);
212
213impl<'tcx> LateLintPass<'tcx> for TyTyKind {
214    fn check_path(
215        &mut self,
216        cx: &LateContext<'tcx>,
217        path: &rustc_hir::Path<'tcx>,
218        _: rustc_hir::HirId,
219    ) {
220        if let Some(segment) = path.segments.iter().nth_back(1)
221            && lint_ty_kind_usage(cx, &segment.res)
222        {
223            let span =
224                path.span.with_hi(segment.args.map_or(segment.ident.span, |a| a.span_ext).hi());
225            cx.emit_span_lint(USAGE_OF_TY_TYKIND, path.span, TykindKind { suggestion: span });
226        }
227    }
228
229    fn check_ty(&mut self, cx: &LateContext<'_>, ty: &'tcx hir::Ty<'tcx, hir::AmbigArg>) {
230        match &ty.kind {
231            hir::TyKind::Path(hir::QPath::Resolved(_, path)) => {
232                if lint_ty_kind_usage(cx, &path.res) {
233                    let span = match cx.tcx.parent_hir_node(ty.hir_id) {
234                        hir::Node::PatExpr(hir::PatExpr {
235                            kind: hir::PatExprKind::Path(qpath),
236                            ..
237                        })
238                        | hir::Node::Pat(hir::Pat {
239                            kind:
240                                hir::PatKind::TupleStruct(qpath, ..) | hir::PatKind::Struct(qpath, ..),
241                            ..
242                        })
243                        | hir::Node::Expr(
244                            hir::Expr { kind: hir::ExprKind::Path(qpath), .. }
245                            | &hir::Expr { kind: hir::ExprKind::Struct(qpath, ..), .. },
246                        ) => {
247                            if let hir::QPath::TypeRelative(qpath_ty, ..) = qpath
248                                && qpath_ty.hir_id == ty.hir_id
249                            {
250                                Some(path.span)
251                            } else {
252                                None
253                            }
254                        }
255                        _ => None,
256                    };
257
258                    match span {
259                        Some(span) => {
260                            cx.emit_span_lint(
261                                USAGE_OF_TY_TYKIND,
262                                path.span,
263                                TykindKind { suggestion: span },
264                            );
265                        }
266                        None => cx.emit_span_lint(USAGE_OF_TY_TYKIND, path.span, TykindDiag),
267                    }
268                } else if !ty.span.from_expansion()
269                    && path.segments.len() > 1
270                    && let Some(ty) = is_ty_or_ty_ctxt(cx, path)
271                {
272                    cx.emit_span_lint(
273                        USAGE_OF_QUALIFIED_TY,
274                        path.span,
275                        TyQualified { ty, suggestion: path.span },
276                    );
277                }
278            }
279            _ => {}
280        }
281    }
282}
283
284fn lint_ty_kind_usage(cx: &LateContext<'_>, res: &Res) -> bool {
285    if let Some(did) = res.opt_def_id() {
286        cx.tcx.is_diagnostic_item(sym::TyKind, did) || cx.tcx.is_diagnostic_item(sym::IrTyKind, did)
287    } else {
288        false
289    }
290}
291
292fn is_ty_or_ty_ctxt(cx: &LateContext<'_>, path: &hir::Path<'_>) -> Option<String> {
293    match path.res {
294        Res::Def(_, def_id) => {
295            if let Some(name @ (sym::Ty | sym::TyCtxt)) = cx.tcx.get_diagnostic_name(def_id) {
296                return Some(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}{1}", name,
                gen_args(path.segments.last().unwrap())))
    })format!("{}{}", name, gen_args(path.segments.last().unwrap())));
297            }
298        }
299        // Only lint on `&Ty` and `&TyCtxt` if it is used outside of a trait.
300        Res::SelfTyAlias { alias_to: did, is_trait_impl: false, .. } => {
301            if let ty::Adt(adt, args) =
302                cx.tcx.type_of(did).instantiate_identity().skip_norm_wip().kind()
303                && let Some(name @ (sym::Ty | sym::TyCtxt)) = cx.tcx.get_diagnostic_name(adt.did())
304            {
305                return Some(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}<{1}>", name, args[0]))
    })format!("{}<{}>", name, args[0]));
306            }
307        }
308        _ => (),
309    }
310
311    None
312}
313
314fn gen_args(segment: &hir::PathSegment<'_>) -> String {
315    if let Some(args) = &segment.args {
316        let lifetimes = args
317            .args
318            .iter()
319            .filter_map(|arg| {
320                if let hir::GenericArg::Lifetime(lt) = arg {
321                    Some(lt.ident.to_string())
322                } else {
323                    None
324                }
325            })
326            .collect::<Vec<_>>();
327
328        if !lifetimes.is_empty() {
329            return ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("<{0}>", lifetimes.join(", ")))
    })format!("<{}>", lifetimes.join(", "));
330        }
331    }
332
333    String::new()
334}
335
336#[doc = r" The `non_glob_import_of_type_ir_inherent_item` lint detects"]
#[doc = r" non-glob imports of module `rustc_type_ir::inherent`."]
pub static NON_GLOB_IMPORT_OF_TYPE_IR_INHERENT: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::NON_GLOB_IMPORT_OF_TYPE_IR_INHERENT",
            default_level: ::rustc_lint_defs::Allow,
            desc: "non-glob import of `rustc_type_ir::inherent`",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
337    /// The `non_glob_import_of_type_ir_inherent_item` lint detects
338    /// non-glob imports of module `rustc_type_ir::inherent`.
339    pub rustc::NON_GLOB_IMPORT_OF_TYPE_IR_INHERENT,
340    Allow,
341    "non-glob import of `rustc_type_ir::inherent`",
342    report_in_external_macro: true
343}
344
345#[doc =
r" The `usage_of_type_ir_inherent` lint detects usage of `rustc_type_ir::inherent`."]
#[doc = r""]
#[doc = r" This module should only be used within the trait solver."]
pub static USAGE_OF_TYPE_IR_INHERENT: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::USAGE_OF_TYPE_IR_INHERENT",
            default_level: ::rustc_lint_defs::Allow,
            desc: "usage `rustc_type_ir::inherent` outside of trait system",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
346    /// The `usage_of_type_ir_inherent` lint detects usage of `rustc_type_ir::inherent`.
347    ///
348    /// This module should only be used within the trait solver.
349    pub rustc::USAGE_OF_TYPE_IR_INHERENT,
350    Allow,
351    "usage `rustc_type_ir::inherent` outside of trait system",
352    report_in_external_macro: true
353}
354
355#[doc =
r" The `usage_of_type_ir_traits` lint detects usage of `rustc_type_ir::Interner`,"]
#[doc = r" or `rustc_infer::InferCtxtLike`."]
#[doc = r""]
#[doc =
r" Methods of this trait should only be used within the type system abstraction layer,"]
#[doc =
r" and in the generic next trait solver implementation. Look for an analogously named"]
#[doc = r" method on `TyCtxt` or `InferCtxt` (respectively)."]
pub static USAGE_OF_TYPE_IR_TRAITS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::USAGE_OF_TYPE_IR_TRAITS",
            default_level: ::rustc_lint_defs::Allow,
            desc: "usage `rustc_type_ir`-specific abstraction traits outside of trait system",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
356    /// The `usage_of_type_ir_traits` lint detects usage of `rustc_type_ir::Interner`,
357    /// or `rustc_infer::InferCtxtLike`.
358    ///
359    /// Methods of this trait should only be used within the type system abstraction layer,
360    /// and in the generic next trait solver implementation. Look for an analogously named
361    /// method on `TyCtxt` or `InferCtxt` (respectively).
362    pub rustc::USAGE_OF_TYPE_IR_TRAITS,
363    Allow,
364    "usage `rustc_type_ir`-specific abstraction traits outside of trait system",
365    report_in_external_macro: true
366}
367#[doc =
r" The `direct_use_of_rustc_type_ir` lint detects usage of `rustc_type_ir`."]
#[doc = r""]
#[doc =
r" This module should only be used within the trait solver and some desirable"]
#[doc = r" crates like rustc_middle."]
pub static DIRECT_USE_OF_RUSTC_TYPE_IR: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::DIRECT_USE_OF_RUSTC_TYPE_IR",
            default_level: ::rustc_lint_defs::Allow,
            desc: "usage `rustc_type_ir` abstraction outside of trait system",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
368    /// The `direct_use_of_rustc_type_ir` lint detects usage of `rustc_type_ir`.
369    ///
370    /// This module should only be used within the trait solver and some desirable
371    /// crates like rustc_middle.
372    pub rustc::DIRECT_USE_OF_RUSTC_TYPE_IR,
373    Allow,
374    "usage `rustc_type_ir` abstraction outside of trait system",
375    report_in_external_macro: true
376}
377
378pub struct TypeIr;
#[automatically_derived]
impl ::core::marker::Copy for TypeIr { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for TypeIr { }
#[automatically_derived]
impl ::core::clone::Clone for TypeIr {
    #[inline]
    fn clone(&self) -> TypeIr { *self }
}
impl ::rustc_lint_defs::LintPass for TypeIr {
    fn name(&self) -> &'static str { "TypeIr" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [DIRECT_USE_OF_RUSTC_TYPE_IR,
                        NON_GLOB_IMPORT_OF_TYPE_IR_INHERENT,
                        USAGE_OF_TYPE_IR_INHERENT, USAGE_OF_TYPE_IR_TRAITS]))
    }
}
impl TypeIr {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [DIRECT_USE_OF_RUSTC_TYPE_IR,
                        NON_GLOB_IMPORT_OF_TYPE_IR_INHERENT,
                        USAGE_OF_TYPE_IR_INHERENT, USAGE_OF_TYPE_IR_TRAITS]))
    }
}declare_lint_pass!(TypeIr => [
379    DIRECT_USE_OF_RUSTC_TYPE_IR,
380    NON_GLOB_IMPORT_OF_TYPE_IR_INHERENT,
381    USAGE_OF_TYPE_IR_INHERENT,
382    USAGE_OF_TYPE_IR_TRAITS
383]);
384
385impl<'tcx> LateLintPass<'tcx> for TypeIr {
386    fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx hir::Expr<'tcx>) {
387        let res_def_id = match expr.kind {
388            hir::ExprKind::Path(hir::QPath::Resolved(_, path)) => path.res.opt_def_id(),
389            hir::ExprKind::Path(hir::QPath::TypeRelative(..)) | hir::ExprKind::MethodCall(..) => {
390                cx.typeck_results().type_dependent_def_id(expr.hir_id)
391            }
392            _ => return,
393        };
394        let Some(res_def_id) = res_def_id else {
395            return;
396        };
397        if let Some(assoc_item) = cx.tcx.opt_associated_item(res_def_id)
398            && let Some(trait_def_id) = assoc_item.trait_container(cx.tcx)
399            && (cx.tcx.is_diagnostic_item(sym::type_ir_interner, trait_def_id)
400                | cx.tcx.is_diagnostic_item(sym::type_ir_infer_ctxt_like, trait_def_id))
401        {
402            cx.emit_span_lint(USAGE_OF_TYPE_IR_TRAITS, expr.span, TypeIrTraitUsage);
403        }
404    }
405
406    fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'tcx>) {
407        let rustc_hir::ItemKind::Use(path, kind) = item.kind else { return };
408
409        let is_mod_inherent = |res: Res| {
410            res.opt_def_id()
411                .is_some_and(|def_id| cx.tcx.is_diagnostic_item(sym::type_ir_inherent, def_id))
412        };
413
414        // Path segments except for the final.
415        if let Some(seg) = path.segments.iter().find(|seg| is_mod_inherent(seg.res)) {
416            cx.emit_span_lint(USAGE_OF_TYPE_IR_INHERENT, seg.ident.span, TypeIrInherentUsage);
417        }
418        // Final path resolutions, like `use rustc_type_ir::inherent`
419        else if let Some(type_ns) = path.res.type_ns
420            && is_mod_inherent(type_ns)
421        {
422            cx.emit_span_lint(
423                USAGE_OF_TYPE_IR_INHERENT,
424                path.segments.last().unwrap().ident.span,
425                TypeIrInherentUsage,
426            );
427        }
428
429        let (lo, hi, snippet) = match path.segments {
430            [.., penultimate, segment] if is_mod_inherent(penultimate.res) => {
431                (segment.ident.span, item.kind.ident().unwrap().span, "*")
432            }
433            [.., segment]
434                if let Some(type_ns) = path.res.type_ns
435                    && is_mod_inherent(type_ns)
436                    && let rustc_hir::UseKind::Single(ident) = kind =>
437            {
438                let (lo, snippet) =
439                    match cx.tcx.sess.source_map().span_to_snippet(path.span).as_deref() {
440                        Ok("self") => (path.span, "*"),
441                        _ => (segment.ident.span.shrink_to_hi(), "::*"),
442                    };
443                (lo, if segment.ident == ident { lo } else { ident.span }, snippet)
444            }
445            _ => return,
446        };
447        cx.emit_span_lint(
448            NON_GLOB_IMPORT_OF_TYPE_IR_INHERENT,
449            path.span,
450            NonGlobImportTypeIrInherent { suggestion: lo.eq_ctxt(hi).then(|| lo.to(hi)), snippet },
451        );
452    }
453
454    fn check_path(
455        &mut self,
456        cx: &LateContext<'tcx>,
457        path: &rustc_hir::Path<'tcx>,
458        _: rustc_hir::HirId,
459    ) {
460        if let Some(seg) = path.segments.iter().find(|seg| {
461            seg.res
462                .opt_def_id()
463                .is_some_and(|def_id| cx.tcx.is_diagnostic_item(sym::type_ir, def_id))
464        }) {
465            cx.emit_span_lint(DIRECT_USE_OF_RUSTC_TYPE_IR, seg.ident.span, TypeIrDirectUse);
466        }
467    }
468}
469
470#[doc =
r" The `lint_pass_impl_without_macro` detects manual implementations of a lint"]
#[doc = r" pass, without using [`declare_lint_pass`] or [`impl_lint_pass`]."]
pub static LINT_PASS_IMPL_WITHOUT_MACRO: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::LINT_PASS_IMPL_WITHOUT_MACRO",
            default_level: ::rustc_lint_defs::Allow,
            desc: "`impl LintPass` without the `declare_lint_pass!` or `impl_lint_pass!` macros",
            edition_lint_opts: None,
            report_in_external_macro: false,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
471    /// The `lint_pass_impl_without_macro` detects manual implementations of a lint
472    /// pass, without using [`declare_lint_pass`] or [`impl_lint_pass`].
473    pub rustc::LINT_PASS_IMPL_WITHOUT_MACRO,
474    Allow,
475    "`impl LintPass` without the `declare_lint_pass!` or `impl_lint_pass!` macros"
476}
477
478pub struct LintPassImpl;
#[automatically_derived]
impl ::core::marker::Copy for LintPassImpl { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for LintPassImpl { }
#[automatically_derived]
impl ::core::clone::Clone for LintPassImpl {
    #[inline]
    fn clone(&self) -> LintPassImpl { *self }
}
impl ::rustc_lint_defs::LintPass for LintPassImpl {
    fn name(&self) -> &'static str { "LintPassImpl" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [LINT_PASS_IMPL_WITHOUT_MACRO]))
    }
}
impl LintPassImpl {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [LINT_PASS_IMPL_WITHOUT_MACRO]))
    }
}declare_lint_pass!(LintPassImpl => [LINT_PASS_IMPL_WITHOUT_MACRO]);
479
480impl EarlyLintPass for LintPassImpl {
481    fn check_item(&mut self, cx: &EarlyContext<'_>, item: &ast::Item) {
482        if let ast::ItemKind::Impl(ast::Impl { of_trait: Some(of_trait), .. }) = &item.kind
483            && let Some(last) = of_trait.trait_ref.path.segments.last()
484            && last.ident.name == sym::LintPass
485        {
486            let expn_data = of_trait.trait_ref.path.span.ctxt().outer_expn_data();
487            let call_site = expn_data.call_site;
488            if expn_data.kind != ExpnKind::Macro(MacroKind::Bang, sym::impl_lint_pass)
489                && call_site.ctxt().outer_expn_data().kind
490                    != ExpnKind::Macro(MacroKind::Bang, sym::declare_lint_pass)
491            {
492                cx.emit_span_lint(
493                    LINT_PASS_IMPL_WITHOUT_MACRO,
494                    of_trait.trait_ref.path.span,
495                    LintPassByHand,
496                );
497            }
498        }
499    }
500}
501
502#[doc =
r" The `bad_opt_access` lint detects accessing options by field instead of"]
#[doc = r" the wrapper function."]
pub static BAD_OPT_ACCESS: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::BAD_OPT_ACCESS",
            default_level: ::rustc_lint_defs::Deny,
            desc: "prevent using options by field access when there is a wrapper function",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
503    /// The `bad_opt_access` lint detects accessing options by field instead of
504    /// the wrapper function.
505    pub rustc::BAD_OPT_ACCESS,
506    Deny,
507    "prevent using options by field access when there is a wrapper function",
508    report_in_external_macro: true
509}
510
511pub struct BadOptAccess;
#[automatically_derived]
impl ::core::marker::Copy for BadOptAccess { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for BadOptAccess { }
#[automatically_derived]
impl ::core::clone::Clone for BadOptAccess {
    #[inline]
    fn clone(&self) -> BadOptAccess { *self }
}
impl ::rustc_lint_defs::LintPass for BadOptAccess {
    fn name(&self) -> &'static str { "BadOptAccess" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [BAD_OPT_ACCESS]))
    }
}
impl BadOptAccess {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [BAD_OPT_ACCESS]))
    }
}declare_lint_pass!(BadOptAccess => [BAD_OPT_ACCESS]);
512
513impl LateLintPass<'_> for BadOptAccess {
514    fn check_expr(&mut self, cx: &LateContext<'_>, expr: &hir::Expr<'_>) {
515        let hir::ExprKind::Field(base, target) = expr.kind else { return };
516        let Some(adt_def) = cx.typeck_results().expr_ty(base).ty_adt_def() else { return };
517        // Skip types without `#[rustc_lint_opt_ty]` - only so that the rest of the lint can be
518        // avoided.
519        if !{
        {
            'done:
                {
                for i in
                    ::rustc_hir::attrs::HasAttrs::get_attrs(adt_def.did(),
                        &cx.tcx) {
                    #[allow(unused_imports)]
                    use rustc_hir::attrs::AttributeKind::*;
                    let i: &rustc_hir::Attribute = i;
                    match i {
                        rustc_hir::Attribute::Parsed(RustcLintOptTy) => {
                            break 'done Some(());
                        }
                        rustc_hir::Attribute::Unparsed(..) =>
                            {}
                            #[deny(unreachable_patterns)]
                            _ => {}
                    }
                }
                None
            }
        }
    }.is_some()find_attr!(cx.tcx, adt_def.did(), RustcLintOptTy) {
520            return;
521        }
522
523        for field in adt_def.all_fields() {
524            if field.name == target.name
525                && let Some(lint_message) = {
    {
        'done:
            {
            for i in
                ::rustc_hir::attrs::HasAttrs::get_attrs(field.did, &cx.tcx) {
                #[allow(unused_imports)]
                use rustc_hir::attrs::AttributeKind::*;
                let i: &rustc_hir::Attribute = i;
                match i {
                    rustc_hir::Attribute::Parsed(RustcLintOptDenyFieldAccess {
                        lint_message }) => {
                        break 'done Some(lint_message);
                    }
                    rustc_hir::Attribute::Unparsed(..) =>
                        {}
                        #[deny(unreachable_patterns)]
                        _ => {}
                }
            }
            None
        }
    }
}find_attr!(cx.tcx, field.did, RustcLintOptDenyFieldAccess { lint_message, } => lint_message)
526            {
527                cx.emit_span_lint(
528                    BAD_OPT_ACCESS,
529                    expr.span,
530                    BadOptAccessDiag { msg: lint_message.as_str() },
531                );
532            }
533        }
534    }
535}
536
537pub static SPAN_USE_EQ_CTXT: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::SPAN_USE_EQ_CTXT",
            default_level: ::rustc_lint_defs::Allow,
            desc: "forbid uses of `==` with `Span::ctxt`, suggest `Span::eq_ctxt` instead",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
538    pub rustc::SPAN_USE_EQ_CTXT,
539    Allow,
540    "forbid uses of `==` with `Span::ctxt`, suggest `Span::eq_ctxt` instead",
541    report_in_external_macro: true
542}
543
544pub struct SpanUseEqCtxt;
#[automatically_derived]
impl ::core::marker::Copy for SpanUseEqCtxt { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for SpanUseEqCtxt { }
#[automatically_derived]
impl ::core::clone::Clone for SpanUseEqCtxt {
    #[inline]
    fn clone(&self) -> SpanUseEqCtxt { *self }
}
impl ::rustc_lint_defs::LintPass for SpanUseEqCtxt {
    fn name(&self) -> &'static str { "SpanUseEqCtxt" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [SPAN_USE_EQ_CTXT]))
    }
}
impl SpanUseEqCtxt {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [SPAN_USE_EQ_CTXT]))
    }
}declare_lint_pass!(SpanUseEqCtxt => [SPAN_USE_EQ_CTXT]);
545
546impl<'tcx> LateLintPass<'tcx> for SpanUseEqCtxt {
547    fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &hir::Expr<'_>) {
548        if let hir::ExprKind::Binary(
549            hir::BinOp { node: hir::BinOpKind::Eq | hir::BinOpKind::Ne, .. },
550            lhs,
551            rhs,
552        ) = expr.kind
553        {
554            if is_span_ctxt_call(cx, lhs) && is_span_ctxt_call(cx, rhs) {
555                cx.emit_span_lint(SPAN_USE_EQ_CTXT, expr.span, SpanUseEqCtxtDiag);
556            }
557        }
558    }
559}
560
561fn is_span_ctxt_call(cx: &LateContext<'_>, expr: &hir::Expr<'_>) -> bool {
562    match &expr.kind {
563        hir::ExprKind::MethodCall(..) => cx
564            .typeck_results()
565            .type_dependent_def_id(expr.hir_id)
566            .is_some_and(|call_did| cx.tcx.is_diagnostic_item(sym::SpanCtxt, call_did)),
567
568        _ => false,
569    }
570}
571
572#[doc =
r" The `symbol_intern_string_literal` detects `Symbol::intern` being called on a string literal"]
pub static SYMBOL_INTERN_STRING_LITERAL: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::SYMBOL_INTERN_STRING_LITERAL",
            default_level: ::rustc_lint_defs::Allow,
            desc: "Forbid uses of string literals in `Symbol::intern`, suggesting preinterning instead",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
573    /// The `symbol_intern_string_literal` detects `Symbol::intern` being called on a string literal
574    pub rustc::SYMBOL_INTERN_STRING_LITERAL,
575    Allow,
576    "Forbid uses of string literals in `Symbol::intern`, suggesting preinterning instead",
577    report_in_external_macro: true
578}
579
580pub struct SymbolInternStringLiteral;
#[automatically_derived]
impl ::core::marker::Copy for SymbolInternStringLiteral { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for SymbolInternStringLiteral { }
#[automatically_derived]
impl ::core::clone::Clone for SymbolInternStringLiteral {
    #[inline]
    fn clone(&self) -> SymbolInternStringLiteral { *self }
}
impl ::rustc_lint_defs::LintPass for SymbolInternStringLiteral {
    fn name(&self) -> &'static str { "SymbolInternStringLiteral" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [SYMBOL_INTERN_STRING_LITERAL]))
    }
}
impl SymbolInternStringLiteral {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [SYMBOL_INTERN_STRING_LITERAL]))
    }
}declare_lint_pass!(SymbolInternStringLiteral => [SYMBOL_INTERN_STRING_LITERAL]);
581
582impl<'tcx> LateLintPass<'tcx> for SymbolInternStringLiteral {
583    fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx rustc_hir::Expr<'tcx>) {
584        if let hir::ExprKind::Call(path, [arg]) = expr.kind
585            && let hir::ExprKind::Path(ref qpath) = path.kind
586            && let Some(def_id) = cx.qpath_res(qpath, path.hir_id).opt_def_id()
587            && cx.tcx.is_diagnostic_item(sym::SymbolIntern, def_id)
588            && let hir::ExprKind::Lit(kind) = arg.kind
589            && let rustc_ast::LitKind::Str(_, _) = kind.node
590        {
591            cx.emit_span_lint(
592                SYMBOL_INTERN_STRING_LITERAL,
593                kind.span,
594                SymbolInternStringLiteralDiag,
595            );
596        }
597    }
598}
599
600#[doc =
r" The `implicit_sysroot_crate_import` detects use of `extern crate` to import non-sysroot crates"]
#[doc =
r" (e.g. crates.io deps) from the sysroot, which is dangerous because these crates are not guaranteed"]
#[doc =
r" to exist exactly once, and so may be missing entirely or appear multiple times resulting in ambiguity."]
pub static IMPLICIT_SYSROOT_CRATE_IMPORT: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::IMPLICIT_SYSROOT_CRATE_IMPORT",
            default_level: ::rustc_lint_defs::Allow,
            desc: "Forbid uses of non-sysroot crates in `extern crate`",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
601    /// The `implicit_sysroot_crate_import` detects use of `extern crate` to import non-sysroot crates
602    /// (e.g. crates.io deps) from the sysroot, which is dangerous because these crates are not guaranteed
603    /// to exist exactly once, and so may be missing entirely or appear multiple times resulting in ambiguity.
604    pub rustc::IMPLICIT_SYSROOT_CRATE_IMPORT,
605    Allow,
606    "Forbid uses of non-sysroot crates in `extern crate`",
607    report_in_external_macro: true
608}
609
610pub struct ImplicitSysrootCrateImport;
#[automatically_derived]
impl ::core::marker::Copy for ImplicitSysrootCrateImport { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for ImplicitSysrootCrateImport { }
#[automatically_derived]
impl ::core::clone::Clone for ImplicitSysrootCrateImport {
    #[inline]
    fn clone(&self) -> ImplicitSysrootCrateImport { *self }
}
impl ::rustc_lint_defs::LintPass for ImplicitSysrootCrateImport {
    fn name(&self) -> &'static str { "ImplicitSysrootCrateImport" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [IMPLICIT_SYSROOT_CRATE_IMPORT]))
    }
}
impl ImplicitSysrootCrateImport {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [IMPLICIT_SYSROOT_CRATE_IMPORT]))
    }
}declare_lint_pass!(ImplicitSysrootCrateImport => [IMPLICIT_SYSROOT_CRATE_IMPORT]);
611
612impl EarlyLintPass for ImplicitSysrootCrateImport {
613    fn check_item(&mut self, cx: &EarlyContext<'_>, item: &ast::Item) {
614        fn is_whitelisted(crate_name: &str) -> bool {
615            // Whitelist of allowed crates.
616            crate_name.starts_with("rustc_")
617                || #[allow(non_exhaustive_omitted_patterns)] match crate_name {
    "test" | "self" | "core" | "alloc" | "std" | "proc_macro" |
        "tikv_jemalloc_sys" => true,
    _ => false,
}matches!(
618                    crate_name,
619                    "test" | "self" | "core" | "alloc" | "std" | "proc_macro" | "tikv_jemalloc_sys"
620                )
621        }
622
623        if let ast::ItemKind::ExternCrate(original_name, imported_name) = &item.kind {
624            let name = original_name.as_ref().unwrap_or(&imported_name.name).as_str();
625            let externs = &cx.builder.sess().opts.externs;
626            if externs.get(name).is_none() && !is_whitelisted(name) {
627                cx.emit_span_lint(
628                    IMPLICIT_SYSROOT_CRATE_IMPORT,
629                    item.span,
630                    ImplicitSysrootCrateImportDiag { name },
631                );
632            }
633        }
634    }
635}
636
637pub static BAD_USE_OF_FIND_ATTR: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::BAD_USE_OF_FIND_ATTR",
            default_level: ::rustc_lint_defs::Allow,
            desc: "Forbid `AttributeKind::` as a prefix in `find_attr!` macros.",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
638    pub rustc::BAD_USE_OF_FIND_ATTR,
639    Allow,
640    "Forbid `AttributeKind::` as a prefix in `find_attr!` macros.",
641    report_in_external_macro: true
642}
643pub struct BadUseOfFindAttr;
#[automatically_derived]
impl ::core::marker::Copy for BadUseOfFindAttr { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for BadUseOfFindAttr { }
#[automatically_derived]
impl ::core::clone::Clone for BadUseOfFindAttr {
    #[inline]
    fn clone(&self) -> BadUseOfFindAttr { *self }
}
impl ::rustc_lint_defs::LintPass for BadUseOfFindAttr {
    fn name(&self) -> &'static str { "BadUseOfFindAttr" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [BAD_USE_OF_FIND_ATTR]))
    }
}
impl BadUseOfFindAttr {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [BAD_USE_OF_FIND_ATTR]))
    }
}declare_lint_pass!(BadUseOfFindAttr => [BAD_USE_OF_FIND_ATTR]);
644
645impl EarlyLintPass for BadUseOfFindAttr {
646    fn check_arm(&mut self, cx: &EarlyContext<'_>, arm: &rustc_ast::Arm) {
647        fn path_contains_attribute_kind(cx: &EarlyContext<'_>, path: &Path) {
648            for segment in &path.segments {
649                if segment.ident.as_str() == "AttributeKind" {
650                    cx.emit_span_lint(
651                        BAD_USE_OF_FIND_ATTR,
652                        segment.span(),
653                        AttributeKindInFindAttr,
654                    );
655                }
656            }
657        }
658
659        fn find_attr_kind_in_pat(cx: &EarlyContext<'_>, pat: &Pat) {
660            match &pat.kind {
661                PatKind::Struct(_, path, fields, _) => {
662                    path_contains_attribute_kind(cx, path);
663                    for field in fields {
664                        find_attr_kind_in_pat(cx, &field.pat);
665                    }
666                }
667                PatKind::TupleStruct(_, path, fields) => {
668                    path_contains_attribute_kind(cx, path);
669                    for field in fields {
670                        find_attr_kind_in_pat(cx, &field);
671                    }
672                }
673                PatKind::Or(options) => {
674                    for pat in options {
675                        find_attr_kind_in_pat(cx, pat);
676                    }
677                }
678                PatKind::Path(_, path) => {
679                    path_contains_attribute_kind(cx, path);
680                }
681                PatKind::Tuple(elems) => {
682                    for pat in elems {
683                        find_attr_kind_in_pat(cx, pat);
684                    }
685                }
686                PatKind::Box(pat) => {
687                    find_attr_kind_in_pat(cx, pat);
688                }
689                PatKind::Deref(pat) => {
690                    find_attr_kind_in_pat(cx, pat);
691                }
692                PatKind::Ref(..) => {
693                    find_attr_kind_in_pat(cx, pat);
694                }
695                PatKind::Slice(elems) => {
696                    for pat in elems {
697                        find_attr_kind_in_pat(cx, pat);
698                    }
699                }
700
701                PatKind::Guard(pat, ..) => {
702                    find_attr_kind_in_pat(cx, pat);
703                }
704                PatKind::Paren(pat) => {
705                    find_attr_kind_in_pat(cx, pat);
706                }
707                PatKind::Expr(..)
708                | PatKind::Range(..)
709                | PatKind::MacCall(..)
710                | PatKind::Rest
711                | PatKind::Missing
712                | PatKind::Err(..)
713                | PatKind::Ident(..)
714                | PatKind::Never
715                | PatKind::Wild => {}
716            }
717        }
718
719        if let Some(expn_data) = arm.span.source_callee()
720            && let ExpnKind::Macro(_, name) = expn_data.kind
721            && name.as_str() == "find_attr"
722        {
723            find_attr_kind_in_pat(cx, &arm.pat);
724        }
725    }
726}
727
728pub static RUSTC_MUST_MATCH_EXHAUSTIVELY: &::rustc_lint_defs::Lint =
    &::rustc_lint_defs::Lint {
            name: &"rustc::RUSTC_MUST_MATCH_EXHAUSTIVELY",
            default_level: ::rustc_lint_defs::Allow,
            desc: "Forbids matches with wildcards, or if-let matching on enums marked with `#[rustc_must_match_exhaustively]`",
            edition_lint_opts: None,
            report_in_external_macro: true,
            future_incompatible: None,
            is_externally_loaded: true,
            crate_level_only: false,
            ..::rustc_lint_defs::Lint::default_fields_for_macro()
        };declare_tool_lint! {
729    pub rustc::RUSTC_MUST_MATCH_EXHAUSTIVELY,
730    Allow,
731    "Forbids matches with wildcards, or if-let matching on enums marked with `#[rustc_must_match_exhaustively]`",
732    report_in_external_macro: true
733}
734pub struct RustcMustMatchExhaustively;
#[automatically_derived]
impl ::core::marker::Copy for RustcMustMatchExhaustively { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for RustcMustMatchExhaustively { }
#[automatically_derived]
impl ::core::clone::Clone for RustcMustMatchExhaustively {
    #[inline]
    fn clone(&self) -> RustcMustMatchExhaustively { *self }
}
impl ::rustc_lint_defs::LintPass for RustcMustMatchExhaustively {
    fn name(&self) -> &'static str { "RustcMustMatchExhaustively" }
    fn get_lints(&self) -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [RUSTC_MUST_MATCH_EXHAUSTIVELY]))
    }
}
impl RustcMustMatchExhaustively {
    #[allow(unused)]
    pub fn lint_vec() -> ::rustc_lint_defs::LintVec {
        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                [RUSTC_MUST_MATCH_EXHAUSTIVELY]))
    }
}declare_lint_pass!(RustcMustMatchExhaustively => [RUSTC_MUST_MATCH_EXHAUSTIVELY]);
735
736fn is_rustc_must_match_exhaustively(cx: &LateContext<'_>, id: HirId) -> Option<Span> {
737    let res = cx.typeck_results();
738
739    let ty = res.node_type(id);
740
741    let ty = if let ty::Ref(_, ty, _) = ty.kind() { *ty } else { ty };
742
743    if let Some(adt_def) = ty.ty_adt_def()
744        && adt_def.is_enum()
745    {
746        {
    {
        'done:
            {
            for i in
                ::rustc_hir::attrs::HasAttrs::get_attrs(adt_def.did(),
                    &cx.tcx) {
                #[allow(unused_imports)]
                use rustc_hir::attrs::AttributeKind::*;
                let i: &rustc_hir::Attribute = i;
                match i {
                    rustc_hir::Attribute::Parsed(RustcMustMatchExhaustively(span))
                        => {
                        break 'done Some(*span);
                    }
                    rustc_hir::Attribute::Unparsed(..) =>
                        {}
                        #[deny(unreachable_patterns)]
                        _ => {}
                }
            }
            None
        }
    }
}find_attr!(cx.tcx, adt_def.did(), RustcMustMatchExhaustively(span) => *span)
747    } else {
748        None
749    }
750}
751
752fn pat_is_not_exhaustive_heuristic(pat: &hir::Pat<'_>) -> Option<(Span, &'static str)> {
753    match pat.kind {
754        hir::PatKind::Missing => None,
755        hir::PatKind::Wild => Some((pat.span, "because of this wildcard pattern")),
756        hir::PatKind::Binding(_, _, _, Some(pat)) => pat_is_not_exhaustive_heuristic(pat),
757        hir::PatKind::Binding(..) => Some((pat.span, "because of this variable binding")),
758        hir::PatKind::Struct(..) => None,
759        hir::PatKind::TupleStruct(..) => None,
760        hir::PatKind::Or(..) => None,
761        hir::PatKind::Never => None,
762        hir::PatKind::Tuple(..) => None,
763        hir::PatKind::Box(pat) => pat_is_not_exhaustive_heuristic(&*pat),
764        hir::PatKind::Deref(pat) => pat_is_not_exhaustive_heuristic(&*pat),
765        hir::PatKind::Ref(pat, _, _) => pat_is_not_exhaustive_heuristic(&*pat),
766        hir::PatKind::Expr(..) => None,
767        hir::PatKind::Guard(..) => None,
768        hir::PatKind::Range(..) => None,
769        hir::PatKind::Slice(..) => None,
770        hir::PatKind::Err(..) => None,
771    }
772}
773
774impl<'tcx> LateLintPass<'tcx> for RustcMustMatchExhaustively {
775    fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &hir::Expr<'_>) {
776        match expr.kind {
777            // This is not perfect exhaustiveness checking, that's why this is just a rustc internal
778            // attribute. But it catches most reasonable cases
779            hir::ExprKind::Match(expr, arms, _) => {
780                if let Some(attr_span) = is_rustc_must_match_exhaustively(cx, expr.hir_id) {
781                    for arm in arms {
782                        if let Some((span, message)) = pat_is_not_exhaustive_heuristic(arm.pat) {
783                            cx.emit_span_lint(
784                                RUSTC_MUST_MATCH_EXHAUSTIVELY,
785                                expr.span,
786                                RustcMustMatchExhaustivelyNotExhaustive {
787                                    attr_span,
788                                    pat_span: span,
789                                    message,
790                                },
791                            );
792                        }
793                    }
794                }
795            }
796            hir::ExprKind::Let(expr, ..) => {
797                if let Some(attr_span) = is_rustc_must_match_exhaustively(cx, expr.init.hir_id) {
798                    cx.emit_span_lint(
799                        RUSTC_MUST_MATCH_EXHAUSTIVELY,
800                        expr.span,
801                        RustcMustMatchExhaustivelyNotExhaustive {
802                            attr_span,
803                            pat_span: expr.span,
804                            message: "using `if let` only matches on one variant (try using `match`)",
805                        },
806                    );
807                }
808            }
809            _ => {}
810        }
811    }
812
813    fn check_stmt(&mut self, cx: &LateContext<'tcx>, stmt: &'tcx rustc_hir::Stmt<'tcx>) {
814        match stmt.kind {
815            rustc_hir::StmtKind::Let(let_stmt) => {
816                if let_stmt.els.is_some()
817                    && let Some(attr_span) =
818                        is_rustc_must_match_exhaustively(cx, let_stmt.pat.hir_id)
819                {
820                    cx.emit_span_lint(
821                        RUSTC_MUST_MATCH_EXHAUSTIVELY,
822                        let_stmt.span,
823                        RustcMustMatchExhaustivelyNotExhaustive {
824                            attr_span,
825                            pat_span: let_stmt.pat.span,
826                            message: "using `let else` only matches on one variant (try using `match`)",
827                        },
828                    );
829                }
830            }
831            _ => {}
832        }
833    }
834}