@@ -16,7 +16,7 @@ use rustc_hir::{
16
16
} ;
17
17
use rustc_infer:: infer;
18
18
use rustc_middle:: traits:: PatternOriginExpr ;
19
- use rustc_middle:: ty:: { self , Ty , TypeVisitableExt } ;
19
+ use rustc_middle:: ty:: { self , AdtDef , Ty , TypeVisitableExt } ;
20
20
use rustc_middle:: { bug, span_bug} ;
21
21
use rustc_session:: lint:: builtin:: NON_EXHAUSTIVE_OMITTED_PATTERNS ;
22
22
use rustc_session:: parse:: feature_err;
@@ -161,26 +161,34 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
161
161
162
162
/// Mode for adjusting the expected type and binding mode.
163
163
#[ derive( Clone , Copy , Debug , PartialEq , Eq ) ]
164
- enum AdjustMode {
164
+ enum AdjustMode < ' tcx > {
165
165
/// Peel off all immediate reference types. If the `deref_patterns` feature is enabled, this
166
166
/// also peels smart pointer ADTs.
167
- Peel { kind : PeelKind } ,
167
+ Peel { kind : PeelKind < ' tcx > } ,
168
168
/// Pass on the input binding mode and expected type.
169
169
Pass ,
170
170
}
171
171
172
172
/// Restrictions on what types to peel when adjusting the expected type and binding mode.
173
173
#[ derive( Clone , Copy , Debug , PartialEq , Eq ) ]
174
- enum PeelKind {
174
+ enum PeelKind < ' tcx > {
175
175
/// Only peel reference types. This is used for explicit `deref!(_)` patterns, which dereference
176
176
/// any number of `&`/`&mut` references, plus a single smart pointer.
177
177
ExplicitDerefPat ,
178
178
/// Implicitly peel any number of references, and if `deref_patterns` is enabled, smart pointer
179
179
/// ADTs. In order to peel only as much as necessary for the pattern to match, the `until_adt`
180
180
/// field contains the ADT def that the pattern is a constructor for, if applicable, so that we
181
181
/// don't peel it. See [`ResolvedPat`] for more information.
182
- // TODO: add `ResolvedPat` and `until_adt`.
183
- Implicit ,
182
+ Implicit { until_adt : Option < AdtDef < ' tcx > > } ,
183
+ }
184
+
185
+ impl < ' tcx > AdjustMode < ' tcx > {
186
+ const fn peel_until_adt ( opt_adt_def : Option < AdtDef < ' tcx > > ) -> AdjustMode < ' tcx > {
187
+ AdjustMode :: Peel { kind : PeelKind :: Implicit { until_adt : opt_adt_def } }
188
+ }
189
+ const fn peel_all ( ) -> AdjustMode < ' tcx > {
190
+ AdjustMode :: peel_until_adt ( None )
191
+ }
184
192
}
185
193
186
194
/// `ref mut` bindings (explicit or match-ergonomics) are not allowed behind an `&` reference.
@@ -282,7 +290,7 @@ enum ResolvedPatKind<'tcx> {
282
290
}
283
291
284
292
impl < ' tcx > ResolvedPat < ' tcx > {
285
- fn adjust_mode ( & self ) -> AdjustMode {
293
+ fn adjust_mode ( & self ) -> AdjustMode < ' tcx > {
286
294
if let ResolvedPatKind :: Path { res, .. } = self . kind
287
295
&& matches ! ( res, Res :: Def ( DefKind :: Const | DefKind :: AssocConst , _) )
288
296
{
@@ -294,7 +302,7 @@ impl<'tcx> ResolvedPat<'tcx> {
294
302
// The remaining possible resolutions for path, struct, and tuple struct patterns are
295
303
// ADT constructors. As such, we may peel references freely, but we must not peel the
296
304
// ADT itself from the scrutinee if it's a smart pointer.
297
- AdjustMode :: Peel { kind : PeelKind :: Implicit }
305
+ AdjustMode :: peel_until_adt ( self . ty . ty_adt_def ( ) )
298
306
}
299
307
}
300
308
}
@@ -452,7 +460,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
452
460
& self ,
453
461
pat : & ' tcx Pat < ' tcx > ,
454
462
opt_path_res : Option < Result < ResolvedPat < ' tcx > , ErrorGuaranteed > > ,
455
- adjust_mode : AdjustMode ,
463
+ adjust_mode : AdjustMode < ' tcx > ,
456
464
expected : Ty < ' tcx > ,
457
465
pat_info : PatInfo < ' tcx > ,
458
466
) -> Ty < ' tcx > {
@@ -521,14 +529,16 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
521
529
// If `deref_patterns` is enabled, peel a smart pointer from the scrutinee type. See the
522
530
// examples in `tests/ui/pattern/deref_patterns/`.
523
531
_ if self . tcx . features ( ) . deref_patterns ( )
524
- && let AdjustMode :: Peel { kind : PeelKind :: Implicit } = adjust_mode
532
+ && let AdjustMode :: Peel { kind : PeelKind :: Implicit { until_adt } } = adjust_mode
525
533
&& pat. default_binding_modes
526
534
// For simplicity, only apply overloaded derefs if `expected` is a known ADT.
527
535
// FIXME(deref_patterns): we'll get better diagnostics for users trying to
528
536
// implicitly deref generics if we allow them here, but primitives, tuples, and
529
537
// inference vars definitely should be stopped. Figure out what makes most sense.
530
- // TODO: stop peeling if the pattern is a constructor for the scrutinee type
531
- && expected. is_adt ( )
538
+ && let ty:: Adt ( scrutinee_adt, _) = * expected. kind ( )
539
+ // Don't peel if the pattern type already matches the scrutinee. E.g., stop here if
540
+ // matching on a `Cow<'a, T>` scrutinee with a `Cow::Owned(_)` pattern.
541
+ && until_adt != Some ( scrutinee_adt)
532
542
// At this point, the pattern isn't able to match `expected` without peeling. Check
533
543
// that it implements `Deref` before assuming it's a smart pointer, to get a normal
534
544
// type error instead of a missing impl error if not. This only checks for `Deref`,
@@ -633,26 +643,26 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
633
643
& self ,
634
644
pat : & ' tcx Pat < ' tcx > ,
635
645
opt_path_res : Option < Result < ResolvedPat < ' tcx > , ErrorGuaranteed > > ,
636
- ) -> AdjustMode {
646
+ ) -> AdjustMode < ' tcx > {
637
647
match & pat. kind {
638
648
// Type checking these product-like types successfully always require
639
649
// that the expected type be of those types and not reference types.
640
- PatKind :: Struct ( ..)
641
- | PatKind :: TupleStruct ( ..)
642
- | PatKind :: Tuple ( ..)
650
+ PatKind :: Tuple ( ..)
643
651
| PatKind :: Range ( ..)
644
- | PatKind :: Slice ( ..) => AdjustMode :: Peel { kind : PeelKind :: Implicit } ,
652
+ | PatKind :: Slice ( ..) => AdjustMode :: peel_all ( ) ,
645
653
// When checking an explicit deref pattern, only peel reference types.
646
654
// FIXME(deref_patterns): If box patterns and deref patterns need to coexist, box
647
655
// patterns may want `PeelKind::Implicit`, stopping on encountering a box.
648
656
| PatKind :: Box ( _)
649
657
| PatKind :: Deref ( _) => AdjustMode :: Peel { kind : PeelKind :: ExplicitDerefPat } ,
650
658
// A never pattern behaves somewhat like a literal or unit variant.
651
- PatKind :: Never => AdjustMode :: Peel { kind : PeelKind :: Implicit } ,
659
+ PatKind :: Never => AdjustMode :: peel_all ( ) ,
652
660
// For patterns with paths, how we peel the scrutinee depends on the path's resolution.
653
- PatKind :: Expr ( PatExpr { kind : PatExprKind :: Path ( _) , .. } ) => {
661
+ PatKind :: Struct ( ..)
662
+ | PatKind :: TupleStruct ( ..)
663
+ | PatKind :: Expr ( PatExpr { kind : PatExprKind :: Path ( _) , .. } ) => {
654
664
// If there was an error resolving the path, default to peeling everything.
655
- opt_path_res. unwrap ( ) . map_or ( AdjustMode :: Peel { kind : PeelKind :: Implicit } , |pr| pr. adjust_mode ( ) )
665
+ opt_path_res. unwrap ( ) . map_or ( AdjustMode :: peel_all ( ) , |pr| pr. adjust_mode ( ) )
656
666
}
657
667
658
668
// String and byte-string literals result in types `&str` and `&[u8]` respectively.
@@ -662,7 +672,13 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
662
672
// Call `resolve_vars_if_possible` here for inline const blocks.
663
673
PatKind :: Expr ( lt) => match self . resolve_vars_if_possible ( self . check_pat_expr_unadjusted ( lt) ) . kind ( ) {
664
674
ty:: Ref ( ..) => AdjustMode :: Pass ,
665
- _ => AdjustMode :: Peel { kind : PeelKind :: Implicit } ,
675
+ // If an inline const pattern has a library-defined pointer-like type and
676
+ // `deref_patterns` is enabled, don't implicitly add deref patterns for its ADT.
677
+ // Nothing in the library that implements `DerefPure` supports structural equality,
678
+ // but we don't check that until `const_to_pat` in THIR construction. By avoiding
679
+ // type errors here, we can get a more meaningful error there.
680
+ ty:: Adt ( adt, _) => AdjustMode :: peel_until_adt ( Some ( * adt) ) ,
681
+ _ => AdjustMode :: peel_all ( )
666
682
} ,
667
683
668
684
// Ref patterns are complicated, we handle them in `check_pat_ref`.
0 commit comments