713
713
//! I (Nadrieril) prefer to put new tests in `ui/pattern/usefulness` unless there's a specific
714
714
//! reason not to, for example if they crucially depend on a particular feature like `or_patterns`.
715
715
716
+ use rustc_hash:: FxHashSet ;
716
717
use rustc_index:: bit_set:: BitSet ;
717
718
use smallvec:: { smallvec, SmallVec } ;
718
719
use std:: fmt;
720
+ use std:: ops:: Deref ;
719
721
720
722
use crate :: constructor:: { Constructor , ConstructorSet , IntRange } ;
721
723
use crate :: pat:: { DeconstructedPat , PatOrWild , WitnessPat } ;
@@ -730,18 +732,37 @@ pub fn ensure_sufficient_stack<R>(f: impl FnOnce() -> R) -> R {
730
732
f ( )
731
733
}
732
734
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 ) ;
738
738
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 ( ) )
743
753
}
744
754
}
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
+ }
745
766
746
767
/// Context that provides information local to a place under investigation.
747
768
struct PlaceCtxt < ' a , Cx : TypeCx > {
@@ -1361,7 +1382,7 @@ impl<Cx: TypeCx> WitnessMatrix<Cx> {
1361
1382
/// We can however get false negatives because exhaustiveness does not explore all cases. See the
1362
1383
/// section on relevancy at the top of the file.
1363
1384
fn collect_overlapping_range_endpoints < ' p , Cx : TypeCx > (
1364
- mcx : UsefulnessCtxt < ' _ , Cx > ,
1385
+ mcx : & mut UsefulnessCtxt < ' _ , ' p , Cx > ,
1365
1386
overlap_range : IntRange ,
1366
1387
matrix : & Matrix < ' p , Cx > ,
1367
1388
specialized_matrix : & Matrix < ' p , Cx > ,
@@ -1434,7 +1455,7 @@ fn collect_overlapping_range_endpoints<'p, Cx: TypeCx>(
1434
1455
/// This is all explained at the top of the file.
1435
1456
#[ instrument( level = "debug" , skip( mcx, is_top_level) , ret) ]
1436
1457
fn compute_exhaustiveness_and_usefulness < ' a , ' p , Cx : TypeCx > (
1437
- mcx : UsefulnessCtxt < ' a , Cx > ,
1458
+ mcx : & mut UsefulnessCtxt < ' a , ' p , Cx > ,
1438
1459
matrix : & mut Matrix < ' p , Cx > ,
1439
1460
is_top_level : bool ,
1440
1461
) -> Result < WitnessMatrix < Cx > , Cx :: Error > {
@@ -1562,7 +1583,9 @@ fn compute_exhaustiveness_and_usefulness<'a, 'p, Cx: TypeCx>(
1562
1583
// Record usefulness in the patterns.
1563
1584
for row in matrix. rows ( ) {
1564
1585
if row. useful {
1565
- row. head ( ) . set_useful ( ) ;
1586
+ if let PatOrWild :: Pat ( pat) = row. head ( ) {
1587
+ mcx. useful_subpatterns . insert ( ByAddress ( pat) ) ;
1588
+ }
1566
1589
}
1567
1590
}
1568
1591
@@ -1582,11 +1605,18 @@ pub enum Usefulness<'p, Cx: TypeCx> {
1582
1605
}
1583
1606
1584
1607
/// Report whether this pattern was found useful, and its subpatterns that were not useful if any.
1585
- fn collect_pattern_usefulness < ' p , Cx : TypeCx > ( pat : & ' p DeconstructedPat < Cx > ) -> Usefulness < ' p , Cx > {
1586
- fn pat_is_useful < ' p , Cx : TypeCx > ( pat : & ' p DeconstructedPat < Cx > ) -> bool {
1587
- if pat. useful . get ( ) {
1608
+ fn collect_pattern_usefulness < ' p , Cx : TypeCx > (
1609
+ useful_subpatterns : & FxHashSet < ByAddress < & ' p DeconstructedPat < Cx > > > ,
1610
+ pat : & ' p DeconstructedPat < Cx > ,
1611
+ ) -> Usefulness < ' p , Cx > {
1612
+ fn pat_is_useful < ' p , Cx : TypeCx > (
1613
+ useful_subpatterns : & FxHashSet < ByAddress < & ' p DeconstructedPat < Cx > > > ,
1614
+ pat : & ' p DeconstructedPat < Cx > ,
1615
+ ) -> bool {
1616
+ if useful_subpatterns. contains ( & ByAddress ( pat) ) {
1588
1617
true
1589
- } else if pat. is_or_pat ( ) && pat. iter_fields ( ) . any ( |f| pat_is_useful ( f) ) {
1618
+ } else if pat. is_or_pat ( ) && pat. iter_fields ( ) . any ( |f| pat_is_useful ( useful_subpatterns, f) )
1619
+ {
1590
1620
// We always expand or patterns in the matrix, so we will never see the actual
1591
1621
// or-pattern (the one with constructor `Or`) in the column. As such, it will not be
1592
1622
// marked as useful itself, only its children will. We recover this information here.
@@ -1598,7 +1628,7 @@ fn collect_pattern_usefulness<'p, Cx: TypeCx>(pat: &'p DeconstructedPat<Cx>) ->
1598
1628
1599
1629
let mut subpats = Vec :: new ( ) ;
1600
1630
pat. walk ( & mut |p| {
1601
- if pat_is_useful ( p) {
1631
+ if pat_is_useful ( useful_subpatterns , p) {
1602
1632
// The pattern is useful, so we recurse to find redundant subpatterns.
1603
1633
true
1604
1634
} else {
@@ -1608,7 +1638,11 @@ fn collect_pattern_usefulness<'p, Cx: TypeCx>(pat: &'p DeconstructedPat<Cx>) ->
1608
1638
}
1609
1639
} ) ;
1610
1640
1611
- if pat_is_useful ( pat) { Usefulness :: Useful ( subpats) } else { Usefulness :: Redundant }
1641
+ if pat_is_useful ( useful_subpatterns, pat) {
1642
+ Usefulness :: Useful ( subpats)
1643
+ } else {
1644
+ Usefulness :: Redundant
1645
+ }
1612
1646
}
1613
1647
1614
1648
/// The output of checking a match for exhaustiveness and arm usefulness.
@@ -1628,18 +1662,18 @@ pub fn compute_match_usefulness<'p, Cx: TypeCx>(
1628
1662
scrut_ty : Cx :: Ty ,
1629
1663
scrut_validity : ValidityConstraint ,
1630
1664
) -> Result < UsefulnessReport < ' p , Cx > , Cx :: Error > {
1631
- let cx = UsefulnessCtxt { tycx } ;
1665
+ let mut cx = UsefulnessCtxt { tycx, useful_subpatterns : FxHashSet :: default ( ) } ;
1632
1666
let mut matrix = Matrix :: new ( arms, scrut_ty, scrut_validity) ;
1633
1667
let non_exhaustiveness_witnesses =
1634
- compute_exhaustiveness_and_usefulness ( cx, & mut matrix, true ) ?;
1668
+ compute_exhaustiveness_and_usefulness ( & mut cx, & mut matrix, true ) ?;
1635
1669
1636
1670
let non_exhaustiveness_witnesses: Vec < _ > = non_exhaustiveness_witnesses. single_column ( ) ;
1637
1671
let arm_usefulness: Vec < _ > = arms
1638
1672
. iter ( )
1639
1673
. copied ( )
1640
1674
. map ( |arm| {
1641
1675
debug ! ( ?arm) ;
1642
- let usefulness = collect_pattern_usefulness ( arm. pat ) ;
1676
+ let usefulness = collect_pattern_usefulness ( & cx . useful_subpatterns , arm. pat ) ;
1643
1677
( arm, usefulness)
1644
1678
} )
1645
1679
. collect ( ) ;
0 commit comments