mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 03:57:37 +00:00

We already do this for a number of crates, e.g. `rustc_middle`, `rustc_span`, `rustc_metadata`, `rustc_span`, `rustc_errors`. For the ones we don't, in many cases the attributes are a mess. - There is no consistency about order of attribute kinds (e.g. `allow`/`deny`/`feature`). - Within attribute kind groups (e.g. the `feature` attributes), sometimes the order is alphabetical, and sometimes there is no particular order. - Sometimes the attributes of a particular kind aren't even grouped all together, e.g. there might be a `feature`, then an `allow`, then another `feature`. This commit extends the existing sorting to all compiler crates, increasing consistency. If any new attribute line is added there is now only one place it can go -- no need for arbitrary decisions. Exceptions: - `rustc_log`, `rustc_next_trait_solver` and `rustc_type_ir_macros`, because they have no crate attributes. - `rustc_codegen_gcc`, because it's quasi-external to rustc (e.g. it's ignored in `rustfmt.toml`).
160 lines
5.5 KiB
Rust
160 lines
5.5 KiB
Rust
//! Analysis of patterns, notably match exhaustiveness checking.
|
|
|
|
// tidy-alphabetical-start
|
|
#![allow(rustc::diagnostic_outside_of_impl)]
|
|
#![allow(rustc::untranslatable_diagnostic)]
|
|
// tidy-alphabetical-end
|
|
|
|
pub mod constructor;
|
|
#[cfg(feature = "rustc")]
|
|
pub mod errors;
|
|
#[cfg(feature = "rustc")]
|
|
pub(crate) mod lints;
|
|
pub mod pat;
|
|
pub mod pat_column;
|
|
#[cfg(feature = "rustc")]
|
|
pub mod rustc;
|
|
pub mod usefulness;
|
|
|
|
#[cfg(feature = "rustc")]
|
|
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
|
|
|
|
use std::fmt;
|
|
|
|
// Re-exports to avoid rustc_index version issues.
|
|
pub use rustc_index::Idx;
|
|
pub use rustc_index::IndexVec;
|
|
|
|
#[cfg(feature = "rustc")]
|
|
use rustc_middle::ty::Ty;
|
|
#[cfg(feature = "rustc")]
|
|
use rustc_span::ErrorGuaranteed;
|
|
|
|
use crate::constructor::{Constructor, ConstructorSet, IntRange};
|
|
use crate::pat::DeconstructedPat;
|
|
use crate::pat_column::PatternColumn;
|
|
|
|
pub trait Captures<'a> {}
|
|
impl<'a, T: ?Sized> Captures<'a> for T {}
|
|
|
|
/// `bool` newtype that indicates whether this is a privately uninhabited field that we should skip
|
|
/// during analysis.
|
|
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
|
|
pub struct PrivateUninhabitedField(pub bool);
|
|
|
|
/// Context that provides type information about constructors.
|
|
///
|
|
/// Most of the crate is parameterized on a type that implements this trait.
|
|
pub trait PatCx: Sized + fmt::Debug {
|
|
/// The type of a pattern.
|
|
type Ty: Clone + fmt::Debug;
|
|
/// Errors that can abort analysis.
|
|
type Error: fmt::Debug;
|
|
/// The index of an enum variant.
|
|
type VariantIdx: Clone + Idx + fmt::Debug;
|
|
/// A string literal
|
|
type StrLit: Clone + PartialEq + fmt::Debug;
|
|
/// Extra data to store in a match arm.
|
|
type ArmData: Copy + Clone + fmt::Debug;
|
|
/// Extra data to store in a pattern.
|
|
type PatData: Clone;
|
|
|
|
fn is_exhaustive_patterns_feature_on(&self) -> bool;
|
|
fn is_min_exhaustive_patterns_feature_on(&self) -> bool;
|
|
|
|
/// The number of fields for this constructor.
|
|
fn ctor_arity(&self, ctor: &Constructor<Self>, ty: &Self::Ty) -> usize;
|
|
|
|
/// The types of the fields for this constructor. The result must contain `ctor_arity()` fields.
|
|
fn ctor_sub_tys<'a>(
|
|
&'a self,
|
|
ctor: &'a Constructor<Self>,
|
|
ty: &'a Self::Ty,
|
|
) -> impl Iterator<Item = (Self::Ty, PrivateUninhabitedField)> + ExactSizeIterator + Captures<'a>;
|
|
|
|
/// The set of all the constructors for `ty`.
|
|
///
|
|
/// This must follow the invariants of `ConstructorSet`
|
|
fn ctors_for_ty(&self, ty: &Self::Ty) -> Result<ConstructorSet<Self>, Self::Error>;
|
|
|
|
/// Write the name of the variant represented by `pat`. Used for the best-effort `Debug` impl of
|
|
/// `DeconstructedPat`. Only invoqued when `pat.ctor()` is `Struct | Variant(_) | UnionField`.
|
|
fn write_variant_name(
|
|
f: &mut fmt::Formatter<'_>,
|
|
ctor: &crate::constructor::Constructor<Self>,
|
|
ty: &Self::Ty,
|
|
) -> fmt::Result;
|
|
|
|
/// Raise a bug.
|
|
fn bug(&self, fmt: fmt::Arguments<'_>) -> Self::Error;
|
|
|
|
/// Lint that the range `pat` overlapped with all the ranges in `overlaps_with`, where the range
|
|
/// they overlapped over is `overlaps_on`. We only detect singleton overlaps.
|
|
/// The default implementation does nothing.
|
|
fn lint_overlapping_range_endpoints(
|
|
&self,
|
|
_pat: &DeconstructedPat<Self>,
|
|
_overlaps_on: IntRange,
|
|
_overlaps_with: &[&DeconstructedPat<Self>],
|
|
) {
|
|
}
|
|
|
|
/// The maximum pattern complexity limit was reached.
|
|
fn complexity_exceeded(&self) -> Result<(), Self::Error>;
|
|
|
|
/// Lint that there is a gap `gap` between `pat` and all of `gapped_with` such that the gap is
|
|
/// not matched by another range. If `gapped_with` is empty, then `gap` is `T::MAX`. We only
|
|
/// detect singleton gaps.
|
|
/// The default implementation does nothing.
|
|
fn lint_non_contiguous_range_endpoints(
|
|
&self,
|
|
_pat: &DeconstructedPat<Self>,
|
|
_gap: IntRange,
|
|
_gapped_with: &[&DeconstructedPat<Self>],
|
|
) {
|
|
}
|
|
}
|
|
|
|
/// The arm of a match expression.
|
|
#[derive(Debug)]
|
|
pub struct MatchArm<'p, Cx: PatCx> {
|
|
pub pat: &'p DeconstructedPat<Cx>,
|
|
pub has_guard: bool,
|
|
pub arm_data: Cx::ArmData,
|
|
}
|
|
|
|
impl<'p, Cx: PatCx> Clone for MatchArm<'p, Cx> {
|
|
fn clone(&self) -> Self {
|
|
Self { pat: self.pat, has_guard: self.has_guard, arm_data: self.arm_data }
|
|
}
|
|
}
|
|
|
|
impl<'p, Cx: PatCx> Copy for MatchArm<'p, Cx> {}
|
|
|
|
/// The entrypoint for this crate. Computes whether a match is exhaustive and which of its arms are
|
|
/// useful, and runs some lints.
|
|
#[cfg(feature = "rustc")]
|
|
pub fn analyze_match<'p, 'tcx>(
|
|
tycx: &rustc::RustcPatCtxt<'p, 'tcx>,
|
|
arms: &[rustc::MatchArm<'p, 'tcx>],
|
|
scrut_ty: Ty<'tcx>,
|
|
pattern_complexity_limit: Option<usize>,
|
|
) -> Result<rustc::UsefulnessReport<'p, 'tcx>, ErrorGuaranteed> {
|
|
use lints::lint_nonexhaustive_missing_variants;
|
|
use usefulness::{compute_match_usefulness, PlaceValidity};
|
|
|
|
let scrut_ty = tycx.reveal_opaque_ty(scrut_ty);
|
|
let scrut_validity = PlaceValidity::from_bool(tycx.known_valid_scrutinee);
|
|
let report =
|
|
compute_match_usefulness(tycx, arms, scrut_ty, scrut_validity, pattern_complexity_limit)?;
|
|
|
|
// Run the non_exhaustive_omitted_patterns lint. Only run on refutable patterns to avoid hitting
|
|
// `if let`s. Only run if the match is exhaustive otherwise the error is redundant.
|
|
if tycx.refutable && report.non_exhaustiveness_witnesses.is_empty() {
|
|
let pat_column = PatternColumn::new(arms);
|
|
lint_nonexhaustive_missing_variants(tycx, arms, &pat_column, scrut_ty)?;
|
|
}
|
|
|
|
Ok(report)
|
|
}
|