Skip to content

Commit 9715df3

Browse files
committed
Track redundant subpatterns without interior mutability
1 parent cb3ce66 commit 9715df3

File tree

1 file changed

+55
-21
lines changed

1 file changed

+55
-21
lines changed

compiler/rustc_pattern_analysis/src/usefulness.rs

+55-21
Original file line numberDiff line numberDiff line change
@@ -713,9 +713,11 @@
713713
//! I (Nadrieril) prefer to put new tests in `ui/pattern/usefulness` unless there's a specific
714714
//! reason not to, for example if they crucially depend on a particular feature like `or_patterns`.
715715
716+
use rustc_hash::FxHashSet;
716717
use rustc_index::bit_set::BitSet;
717718
use smallvec::{smallvec, SmallVec};
718719
use std::fmt;
720+
use std::ops::Deref;
719721

720722
use crate::constructor::{Constructor, ConstructorSet, IntRange};
721723
use crate::pat::{DeconstructedPat, PatOrWild, WitnessPat};
@@ -730,18 +732,37 @@ pub fn ensure_sufficient_stack<R>(f: impl FnOnce() -> R) -> R {
730732
f()
731733
}
732734

733-
/// Context that provides information for usefulness checking.
734-
pub struct UsefulnessCtxt<'a, Cx: TypeCx> {
735-
/// The context for type information.
736-
pub tycx: &'a Cx,
737-
}
735+
/// Wrapper type for by-address hashing. Comparison and hashing of the wrapped pointer type will be
736+
/// based on the address of its contents, rather than their value.
737+
struct ByAddress<T>(T);
738738

739-
impl<'a, Cx: TypeCx> Copy for UsefulnessCtxt<'a, Cx> {}
740-
impl<'a, Cx: TypeCx> Clone for UsefulnessCtxt<'a, Cx> {
741-
fn clone(&self) -> Self {
742-
Self { tycx: self.tycx }
739+
impl<T: Deref> ByAddress<T> {
740+
fn addr(&self) -> *const T::Target {
741+
(&*self.0) as *const _
742+
}
743+
}
744+
/// Raw pointer hashing and comparison.
745+
impl<T: Deref> std::hash::Hash for ByAddress<T> {
746+
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
747+
self.addr().hash(state)
748+
}
749+
}
750+
impl<T: Deref> PartialEq for ByAddress<T> {
751+
fn eq(&self, other: &Self) -> bool {
752+
std::ptr::eq(self.addr(), other.addr())
743753
}
744754
}
755+
impl<T: Deref> Eq for ByAddress<T> {}
756+
757+
/// Context that provides information for usefulness checking.
758+
struct UsefulnessCtxt<'a, 'p, Cx: TypeCx> {
759+
/// The context for type information.
760+
tycx: &'a Cx,
761+
/// Collect the patterns found useful during usefulness checking. This is used to lint
762+
/// unreachable (sub)patterns. We distinguish patterns by their address to avoid needing to
763+
/// inspect the contents. They'll all be distinct anyway since they carry a `Span`.
764+
useful_subpatterns: FxHashSet<ByAddress<&'p DeconstructedPat<Cx>>>,
765+
}
745766

746767
/// Context that provides information local to a place under investigation.
747768
struct PlaceCtxt<'a, Cx: TypeCx> {
@@ -1381,7 +1402,7 @@ impl<Cx: TypeCx> WitnessMatrix<Cx> {
13811402
/// We can however get false negatives because exhaustiveness does not explore all cases. See the
13821403
/// section on relevancy at the top of the file.
13831404
fn collect_overlapping_range_endpoints<'p, Cx: TypeCx>(
1384-
mcx: UsefulnessCtxt<'_, Cx>,
1405+
mcx: &mut UsefulnessCtxt<'_, 'p, Cx>,
13851406
overlap_range: IntRange,
13861407
matrix: &Matrix<'p, Cx>,
13871408
specialized_matrix: &Matrix<'p, Cx>,
@@ -1454,7 +1475,7 @@ fn collect_overlapping_range_endpoints<'p, Cx: TypeCx>(
14541475
/// This is all explained at the top of the file.
14551476
#[instrument(level = "debug", skip(mcx), ret)]
14561477
fn compute_exhaustiveness_and_usefulness<'a, 'p, Cx: TypeCx>(
1457-
mcx: UsefulnessCtxt<'a, Cx>,
1478+
mcx: &mut UsefulnessCtxt<'a, 'p, Cx>,
14581479
matrix: &mut Matrix<'p, Cx>,
14591480
) -> Result<WitnessMatrix<Cx>, Cx::Error> {
14601481
debug_assert!(matrix.rows().all(|r| r.len() == matrix.column_count()));
@@ -1580,7 +1601,9 @@ fn compute_exhaustiveness_and_usefulness<'a, 'p, Cx: TypeCx>(
15801601
// Record usefulness in the patterns.
15811602
for row in matrix.rows() {
15821603
if row.useful {
1583-
row.head().set_useful();
1604+
if let PatOrWild::Pat(pat) = row.head() {
1605+
mcx.useful_subpatterns.insert(ByAddress(pat));
1606+
}
15841607
}
15851608
}
15861609

@@ -1600,11 +1623,18 @@ pub enum Usefulness<'p, Cx: TypeCx> {
16001623
}
16011624

16021625
/// Report whether this pattern was found useful, and its subpatterns that were not useful if any.
1603-
fn collect_pattern_usefulness<'p, Cx: TypeCx>(pat: &'p DeconstructedPat<Cx>) -> Usefulness<'p, Cx> {
1604-
fn pat_is_useful<'p, Cx: TypeCx>(pat: &'p DeconstructedPat<Cx>) -> bool {
1605-
if pat.useful.get() {
1626+
fn collect_pattern_usefulness<'p, Cx: TypeCx>(
1627+
useful_subpatterns: &FxHashSet<ByAddress<&'p DeconstructedPat<Cx>>>,
1628+
pat: &'p DeconstructedPat<Cx>,
1629+
) -> Usefulness<'p, Cx> {
1630+
fn pat_is_useful<'p, Cx: TypeCx>(
1631+
useful_subpatterns: &FxHashSet<ByAddress<&'p DeconstructedPat<Cx>>>,
1632+
pat: &'p DeconstructedPat<Cx>,
1633+
) -> bool {
1634+
if useful_subpatterns.contains(&ByAddress(pat)) {
16061635
true
1607-
} else if pat.is_or_pat() && pat.iter_fields().any(|f| pat_is_useful(f)) {
1636+
} else if pat.is_or_pat() && pat.iter_fields().any(|f| pat_is_useful(useful_subpatterns, f))
1637+
{
16081638
// We always expand or patterns in the matrix, so we will never see the actual
16091639
// or-pattern (the one with constructor `Or`) in the column. As such, it will not be
16101640
// marked as useful itself, only its children will. We recover this information here.
@@ -1616,7 +1646,7 @@ fn collect_pattern_usefulness<'p, Cx: TypeCx>(pat: &'p DeconstructedPat<Cx>) ->
16161646

16171647
let mut redundant_subpats = Vec::new();
16181648
pat.walk(&mut |p| {
1619-
if pat_is_useful(p) {
1649+
if pat_is_useful(useful_subpatterns, p) {
16201650
// The pattern is useful, so we recurse to find redundant subpatterns.
16211651
true
16221652
} else {
@@ -1626,7 +1656,11 @@ fn collect_pattern_usefulness<'p, Cx: TypeCx>(pat: &'p DeconstructedPat<Cx>) ->
16261656
}
16271657
});
16281658

1629-
if pat_is_useful(pat) { Usefulness::Useful(redundant_subpats) } else { Usefulness::Redundant }
1659+
if pat_is_useful(useful_subpatterns, pat) {
1660+
Usefulness::Useful(redundant_subpats)
1661+
} else {
1662+
Usefulness::Redundant
1663+
}
16301664
}
16311665

16321666
/// The output of checking a match for exhaustiveness and arm usefulness.
@@ -1646,17 +1680,17 @@ pub fn compute_match_usefulness<'p, Cx: TypeCx>(
16461680
scrut_ty: Cx::Ty,
16471681
scrut_validity: ValidityConstraint,
16481682
) -> Result<UsefulnessReport<'p, Cx>, Cx::Error> {
1649-
let cx = UsefulnessCtxt { tycx };
1683+
let mut cx = UsefulnessCtxt { tycx, useful_subpatterns: FxHashSet::default() };
16501684
let mut matrix = Matrix::new(arms, scrut_ty, scrut_validity);
1651-
let non_exhaustiveness_witnesses = compute_exhaustiveness_and_usefulness(cx, &mut matrix)?;
1685+
let non_exhaustiveness_witnesses = compute_exhaustiveness_and_usefulness(&mut cx, &mut matrix)?;
16521686

16531687
let non_exhaustiveness_witnesses: Vec<_> = non_exhaustiveness_witnesses.single_column();
16541688
let arm_usefulness: Vec<_> = arms
16551689
.iter()
16561690
.copied()
16571691
.map(|arm| {
16581692
debug!(?arm);
1659-
let usefulness = collect_pattern_usefulness(arm.pat);
1693+
let usefulness = collect_pattern_usefulness(&cx.useful_subpatterns, arm.pat);
16601694
(arm, usefulness)
16611695
})
16621696
.collect();

0 commit comments

Comments
 (0)