1//! Analysis of patterns, notably match exhaustiveness checking. The main entrypoint for this crate
2//! is [`usefulness::compute_match_usefulness`]. For rustc-specific types and entrypoints, see the
3//! [`rustc`] module.
45// tidy-alphabetical-start
6#![allow(rustc::diagnostic_outside_of_impl)]
7#![allow(rustc::untranslatable_diagnostic)]
8#![allow(unused_crate_dependencies)]
9// tidy-alphabetical-end
1011pub(crate) mod checks;
12pub mod constructor;
13#[cfg(feature = "rustc")]
14pub mod errors;
15#[cfg(feature = "rustc")]
16pub(crate) mod lints;
17pub mod pat;
18pub mod pat_column;
19#[cfg(feature = "rustc")]
20pub mod rustc;
21pub mod usefulness;
2223#[cfg(feature = "rustc")]
24#[allow(non_upper_case_globals)]
#[doc(hidden)]
#[doc =
r" Auto-generated constants for type-checked references to Fluent messages."]
pub(crate) mod fluent_generated {
#[doc =
"Constant referring to Fluent message `pattern_analysis_excluside_range_missing_gap` from `pattern_analysis`"]
pub const pattern_analysis_excluside_range_missing_gap:
rustc_errors::DiagMessage =
rustc_errors::DiagMessage::FluentIdentifier(std::borrow::Cow::Borrowed("pattern_analysis_excluside_range_missing_gap"),
None);
#[doc =
"Constant referring to Fluent message `pattern_analysis_excluside_range_missing_gap.label` from `pattern_analysis`"]
pub const pattern_analysis_label: rustc_errors::SubdiagMessage =
rustc_errors::SubdiagMessage::FluentAttr(std::borrow::Cow::Borrowed("label"));
#[doc =
"Constant referring to Fluent message `pattern_analysis_excluside_range_missing_gap.suggestion` from `pattern_analysis`"]
pub const pattern_analysis_suggestion: rustc_errors::SubdiagMessage =
rustc_errors::SubdiagMessage::FluentAttr(std::borrow::Cow::Borrowed("suggestion"));
#[doc =
"Constant referring to Fluent message `pattern_analysis_excluside_range_missing_max` from `pattern_analysis`"]
pub const pattern_analysis_excluside_range_missing_max:
rustc_errors::DiagMessage =
rustc_errors::DiagMessage::FluentIdentifier(std::borrow::Cow::Borrowed("pattern_analysis_excluside_range_missing_max"),
None);
#[doc =
"Constant referring to Fluent message `pattern_analysis_mixed_deref_pattern_constructors` from `pattern_analysis`"]
pub const pattern_analysis_mixed_deref_pattern_constructors:
rustc_errors::DiagMessage =
rustc_errors::DiagMessage::FluentIdentifier(std::borrow::Cow::Borrowed("pattern_analysis_mixed_deref_pattern_constructors"),
None);
#[doc =
"Constant referring to Fluent message `pattern_analysis_mixed_deref_pattern_constructors.deref_pattern_label` from `pattern_analysis`"]
pub const pattern_analysis_deref_pattern_label:
rustc_errors::SubdiagMessage =
rustc_errors::SubdiagMessage::FluentAttr(std::borrow::Cow::Borrowed("deref_pattern_label"));
#[doc =
"Constant referring to Fluent message `pattern_analysis_mixed_deref_pattern_constructors.normal_constructor_label` from `pattern_analysis`"]
pub const pattern_analysis_normal_constructor_label:
rustc_errors::SubdiagMessage =
rustc_errors::SubdiagMessage::FluentAttr(std::borrow::Cow::Borrowed("normal_constructor_label"));
#[doc =
"Constant referring to Fluent message `pattern_analysis_non_exhaustive_omitted_pattern` from `pattern_analysis`"]
pub const pattern_analysis_non_exhaustive_omitted_pattern:
rustc_errors::DiagMessage =
rustc_errors::DiagMessage::FluentIdentifier(std::borrow::Cow::Borrowed("pattern_analysis_non_exhaustive_omitted_pattern"),
None);
#[doc =
"Constant referring to Fluent message `pattern_analysis_non_exhaustive_omitted_pattern.help` from `pattern_analysis`"]
pub const pattern_analysis_help: rustc_errors::SubdiagMessage =
rustc_errors::SubdiagMessage::FluentAttr(std::borrow::Cow::Borrowed("help"));
#[doc =
"Constant referring to Fluent message `pattern_analysis_non_exhaustive_omitted_pattern.note` from `pattern_analysis`"]
pub const pattern_analysis_note: rustc_errors::SubdiagMessage =
rustc_errors::SubdiagMessage::FluentAttr(std::borrow::Cow::Borrowed("note"));
#[doc =
"Constant referring to Fluent message `pattern_analysis_non_exhaustive_omitted_pattern_lint_on_arm` from `pattern_analysis`"]
pub const pattern_analysis_non_exhaustive_omitted_pattern_lint_on_arm:
rustc_errors::DiagMessage =
rustc_errors::DiagMessage::FluentIdentifier(std::borrow::Cow::Borrowed("pattern_analysis_non_exhaustive_omitted_pattern_lint_on_arm"),
None);
#[doc =
"Constant referring to Fluent message `pattern_analysis_overlapping_range_endpoints` from `pattern_analysis`"]
pub const pattern_analysis_overlapping_range_endpoints:
rustc_errors::DiagMessage =
rustc_errors::DiagMessage::FluentIdentifier(std::borrow::Cow::Borrowed("pattern_analysis_overlapping_range_endpoints"),
None);
#[doc =
"Constant referring to Fluent message `pattern_analysis_uncovered` from `pattern_analysis`"]
pub const pattern_analysis_uncovered: rustc_errors::DiagMessage =
rustc_errors::DiagMessage::FluentIdentifier(std::borrow::Cow::Borrowed("pattern_analysis_uncovered"),
None);
#[doc =
r" Constants expected to exist by the diagnostic derive macros to use as default Fluent"]
#[doc = r" identifiers for different subdiagnostic kinds."]
pub mod _subdiag {
#[doc = r" Default for `#[help]`"]
pub const help: rustc_errors::SubdiagMessage =
rustc_errors::SubdiagMessage::FluentAttr(std::borrow::Cow::Borrowed("help"));
#[doc = r" Default for `#[note]`"]
pub const note: rustc_errors::SubdiagMessage =
rustc_errors::SubdiagMessage::FluentAttr(std::borrow::Cow::Borrowed("note"));
#[doc = r" Default for `#[warn]`"]
pub const warn: rustc_errors::SubdiagMessage =
rustc_errors::SubdiagMessage::FluentAttr(std::borrow::Cow::Borrowed("warn"));
#[doc = r" Default for `#[label]`"]
pub const label: rustc_errors::SubdiagMessage =
rustc_errors::SubdiagMessage::FluentAttr(std::borrow::Cow::Borrowed("label"));
#[doc = r" Default for `#[suggestion]`"]
pub const suggestion: rustc_errors::SubdiagMessage =
rustc_errors::SubdiagMessage::FluentAttr(std::borrow::Cow::Borrowed("suggestion"));
}
}rustc_fluent_macro::fluent_messages! { "../messages.ftl" }2526use std::fmt;
2728pub use rustc_index::{Idx, IndexVec}; // re-exported to avoid rustc_index version issues
2930use crate::constructor::{Constructor, ConstructorSet, IntRange};
31use crate::pat::DeconstructedPat;
3233pub trait Captures<'a> {}
34impl<'a, T: ?Sized> Captures<'a> for T {}
3536/// `bool` newtype that indicates whether this is a privately uninhabited field that we should skip
37/// during analysis.
38#[derive(#[automatically_derived]
impl ::core::marker::Copy for PrivateUninhabitedField { }Copy, #[automatically_derived]
impl ::core::clone::Clone for PrivateUninhabitedField {
#[inline]
fn clone(&self) -> PrivateUninhabitedField {
let _: ::core::clone::AssertParamIsClone<bool>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for PrivateUninhabitedField {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"PrivateUninhabitedField", &&self.0)
}
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for PrivateUninhabitedField {
#[inline]
fn eq(&self, other: &PrivateUninhabitedField) -> bool {
self.0 == other.0
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for PrivateUninhabitedField {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_receiver_is_total_eq(&self) -> () {
let _: ::core::cmp::AssertParamIsEq<bool>;
}
}Eq)]
39pub struct PrivateUninhabitedField(pub bool);
4041/// Context that provides type information about constructors.
42///
43/// Most of the crate is parameterized on a type that implements this trait.
44pub trait PatCx: Sized + fmt::Debug {
45/// The type of a pattern.
46type Ty: Clone + fmt::Debug;
47/// Errors that can abort analysis.
48type Error: fmt::Debug;
49/// The index of an enum variant.
50type VariantIdx: Clone + Idx + fmt::Debug;
51/// A string literal
52type StrLit: Clone + PartialEq + fmt::Debug;
53/// Extra data to store in a match arm.
54type ArmData: Copy + Clone + fmt::Debug;
55/// Extra data to store in a pattern.
56type PatData: Clone;
5758fn is_exhaustive_patterns_feature_on(&self) -> bool;
5960/// Whether to ensure the non-exhaustiveness witnesses we report for a complete set. This is
61 /// `false` by default to avoid some exponential blowup cases such as
62 /// <https://github.com/rust-lang/rust/issues/118437>.
63fn exhaustive_witnesses(&self) -> bool {
64false
65}
6667/// The number of fields for this constructor.
68fn ctor_arity(&self, ctor: &Constructor<Self>, ty: &Self::Ty) -> usize;
6970/// The types of the fields for this constructor. The result must contain `ctor_arity()` fields.
71fn ctor_sub_tys(
72&self,
73 ctor: &Constructor<Self>,
74 ty: &Self::Ty,
75 ) -> impl Iterator<Item = (Self::Ty, PrivateUninhabitedField)> + ExactSizeIterator;
7677/// The set of all the constructors for `ty`.
78 ///
79 /// This must follow the invariants of `ConstructorSet`
80fn ctors_for_ty(&self, ty: &Self::Ty) -> Result<ConstructorSet<Self>, Self::Error>;
8182/// Write the name of the variant represented by `pat`. Used for the best-effort `Debug` impl of
83 /// `DeconstructedPat`. Only invoqued when `pat.ctor()` is `Struct | Variant(_) | UnionField`.
84fn write_variant_name(
85 f: &mut fmt::Formatter<'_>,
86 ctor: &crate::constructor::Constructor<Self>,
87 ty: &Self::Ty,
88 ) -> fmt::Result;
8990/// Raise a bug.
91fn bug(&self, fmt: fmt::Arguments<'_>) -> Self::Error;
9293/// Lint that the range `pat` overlapped with all the ranges in `overlaps_with`, where the range
94 /// they overlapped over is `overlaps_on`. We only detect singleton overlaps.
95 /// The default implementation does nothing.
96fn lint_overlapping_range_endpoints(
97&self,
98 _pat: &DeconstructedPat<Self>,
99 _overlaps_on: IntRange,
100 _overlaps_with: &[&DeconstructedPat<Self>],
101 ) {
102 }
103104/// The maximum pattern complexity limit was reached.
105fn complexity_exceeded(&self) -> Result<(), Self::Error>;
106107/// Lint that there is a gap `gap` between `pat` and all of `gapped_with` such that the gap is
108 /// not matched by another range. If `gapped_with` is empty, then `gap` is `T::MAX`. We only
109 /// detect singleton gaps.
110 /// The default implementation does nothing.
111fn lint_non_contiguous_range_endpoints(
112&self,
113 _pat: &DeconstructedPat<Self>,
114 _gap: IntRange,
115 _gapped_with: &[&DeconstructedPat<Self>],
116 ) {
117 }
118119/// Check if we may need to perform additional deref-pattern-specific validation.
120fn match_may_contain_deref_pats(&self) -> bool {
121true
122}
123124/// The current implementation of deref patterns requires that they can't match on the same
125 /// place as a normal constructor. Since this isn't caught by type-checking, we check it in the
126 /// `PatCx` before running the analysis. This reports an error if the check fails.
127fn report_mixed_deref_pat_ctors(
128&self,
129 deref_pat: &DeconstructedPat<Self>,
130 normal_pat: &DeconstructedPat<Self>,
131 ) -> Self::Error;
132}
133134/// The arm of a match expression.
135#[derive(#[automatically_derived]
impl<'p, Cx: ::core::fmt::Debug + PatCx> ::core::fmt::Debug for
MatchArm<'p, Cx> where Cx::ArmData: ::core::fmt::Debug {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field3_finish(f, "MatchArm",
"pat", &self.pat, "has_guard", &self.has_guard, "arm_data",
&&self.arm_data)
}
}Debug)]
136pub struct MatchArm<'p, Cx: PatCx> {
137pub pat: &'p DeconstructedPat<Cx>,
138pub has_guard: bool,
139pub arm_data: Cx::ArmData,
140}
141142impl<'p, Cx: PatCx> Clonefor MatchArm<'p, Cx> {
143fn clone(&self) -> Self {
144*self145 }
146}
147148impl<'p, Cx: PatCx> Copyfor MatchArm<'p, Cx> {}