]> git.lizzy.rs Git - rust.git/blob - crates/hir_ty/src/diagnostics/match_check/deconstruct_pat.rs
Merge #9315
[rust.git] / crates / hir_ty / src / diagnostics / match_check / deconstruct_pat.rs
1 //! [`super::usefulness`] explains most of what is happening in this file. As explained there,
2 //! values and patterns are made from constructors applied to fields. This file defines a
3 //! `Constructor` enum, a `Fields` struct, and various operations to manipulate them and convert
4 //! them from/to patterns.
5 //!
6 //! There's one idea that is not detailed in [`super::usefulness`] because the details are not
7 //! needed there: _constructor splitting_.
8 //!
9 //! # Constructor splitting
10 //!
11 //! The idea is as follows: given a constructor `c` and a matrix, we want to specialize in turn
12 //! with all the value constructors that are covered by `c`, and compute usefulness for each.
13 //! Instead of listing all those constructors (which is intractable), we group those value
14 //! constructors together as much as possible. Example:
15 //!
16 //! ```
17 //! match (0, false) {
18 //!     (0 ..=100, true) => {} // `p_1`
19 //!     (50..=150, false) => {} // `p_2`
20 //!     (0 ..=200, _) => {} // `q`
21 //! }
22 //! ```
23 //!
24 //! The naive approach would try all numbers in the range `0..=200`. But we can be a lot more
25 //! clever: `0` and `1` for example will match the exact same rows, and return equivalent
26 //! witnesses. In fact all of `0..50` would. We can thus restrict our exploration to 4
27 //! constructors: `0..50`, `50..=100`, `101..=150` and `151..=200`. That is enough and infinitely
28 //! more tractable.
29 //!
30 //! We capture this idea in a function `split(p_1 ... p_n, c)` which returns a list of constructors
31 //! `c'` covered by `c`. Given such a `c'`, we require that all value ctors `c''` covered by `c'`
32 //! return an equivalent set of witnesses after specializing and computing usefulness.
33 //! In the example above, witnesses for specializing by `c''` covered by `0..50` will only differ
34 //! in their first element.
35 //!
36 //! We usually also ask that the `c'` together cover all of the original `c`. However we allow
37 //! skipping some constructors as long as it doesn't change whether the resulting list of witnesses
38 //! is empty of not. We use this in the wildcard `_` case.
39 //!
40 //! Splitting is implemented in the [`Constructor::split`] function. We don't do splitting for
41 //! or-patterns; instead we just try the alternatives one-by-one. For details on splitting
42 //! wildcards, see [`SplitWildcard`]; for integer ranges, see [`SplitIntRange`]; for slices, see
43 //! [`SplitVarLenSlice`].
44
45 use std::{
46     cmp::{max, min},
47     iter::once,
48     ops::RangeInclusive,
49 };
50
51 use hir_def::{EnumVariantId, HasModule, LocalFieldId, VariantId};
52 use smallvec::{smallvec, SmallVec};
53
54 use crate::{AdtId, Interner, Scalar, Ty, TyExt, TyKind};
55
56 use super::{
57     usefulness::{MatchCheckCtx, PatCtxt},
58     FieldPat, Pat, PatId, PatKind,
59 };
60
61 use self::Constructor::*;
62
63 /// [Constructor] uses this in umimplemented variants.
64 /// It allows porting match expressions from upstream algorithm without losing semantics.
65 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
66 pub(super) enum Void {}
67
68 /// An inclusive interval, used for precise integer exhaustiveness checking.
69 /// `IntRange`s always store a contiguous range. This means that values are
70 /// encoded such that `0` encodes the minimum value for the integer,
71 /// regardless of the signedness.
72 /// For example, the pattern `-128..=127i8` is encoded as `0..=255`.
73 /// This makes comparisons and arithmetic on interval endpoints much more
74 /// straightforward. See `signed_bias` for details.
75 ///
76 /// `IntRange` is never used to encode an empty range or a "range" that wraps
77 /// around the (offset) space: i.e., `range.lo <= range.hi`.
78 #[derive(Clone, Debug, PartialEq, Eq)]
79 pub(super) struct IntRange {
80     range: RangeInclusive<u128>,
81 }
82
83 impl IntRange {
84     #[inline]
85     fn is_integral(ty: &Ty) -> bool {
86         match ty.kind(&Interner) {
87             TyKind::Scalar(Scalar::Char | Scalar::Int(_) | Scalar::Uint(_) | Scalar::Bool) => true,
88             _ => false,
89         }
90     }
91
92     fn is_singleton(&self) -> bool {
93         self.range.start() == self.range.end()
94     }
95
96     fn boundaries(&self) -> (u128, u128) {
97         (*self.range.start(), *self.range.end())
98     }
99
100     #[inline]
101     fn from_bool(value: bool) -> IntRange {
102         let val = value as u128;
103         IntRange { range: val..=val }
104     }
105
106     #[inline]
107     fn from_range(lo: u128, hi: u128, scalar_ty: Scalar) -> IntRange {
108         if let Scalar::Bool = scalar_ty {
109             IntRange { range: lo..=hi }
110         } else {
111             unimplemented!()
112         }
113     }
114
115     fn is_subrange(&self, other: &Self) -> bool {
116         other.range.start() <= self.range.start() && self.range.end() <= other.range.end()
117     }
118
119     fn intersection(&self, other: &Self) -> Option<Self> {
120         let (lo, hi) = self.boundaries();
121         let (other_lo, other_hi) = other.boundaries();
122         if lo <= other_hi && other_lo <= hi {
123             Some(IntRange { range: max(lo, other_lo)..=min(hi, other_hi) })
124         } else {
125             None
126         }
127     }
128
129     /// See `Constructor::is_covered_by`
130     fn is_covered_by(&self, other: &Self) -> bool {
131         if self.intersection(other).is_some() {
132             // Constructor splitting should ensure that all intersections we encounter are actually
133             // inclusions.
134             assert!(self.is_subrange(other));
135             true
136         } else {
137             false
138         }
139     }
140 }
141
142 /// Represents a border between 2 integers. Because the intervals spanning borders must be able to
143 /// cover every integer, we need to be able to represent 2^128 + 1 such borders.
144 #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
145 enum IntBorder {
146     JustBefore(u128),
147     AfterMax,
148 }
149
150 /// A range of integers that is partitioned into disjoint subranges. This does constructor
151 /// splitting for integer ranges as explained at the top of the file.
152 ///
153 /// This is fed multiple ranges, and returns an output that covers the input, but is split so that
154 /// the only intersections between an output range and a seen range are inclusions. No output range
155 /// straddles the boundary of one of the inputs.
156 ///
157 /// The following input:
158 /// ```
159 ///   |-------------------------| // `self`
160 /// |------|  |----------|   |----|
161 ///    |-------| |-------|
162 /// ```
163 /// would be iterated over as follows:
164 /// ```
165 ///   ||---|--||-|---|---|---|--|
166 /// ```
167 #[derive(Debug, Clone)]
168 struct SplitIntRange {
169     /// The range we are splitting
170     range: IntRange,
171     /// The borders of ranges we have seen. They are all contained within `range`. This is kept
172     /// sorted.
173     borders: Vec<IntBorder>,
174 }
175
176 impl SplitIntRange {
177     fn new(range: IntRange) -> Self {
178         SplitIntRange { range, borders: Vec::new() }
179     }
180
181     /// Internal use
182     fn to_borders(r: IntRange) -> [IntBorder; 2] {
183         use IntBorder::*;
184         let (lo, hi) = r.boundaries();
185         let lo = JustBefore(lo);
186         let hi = match hi.checked_add(1) {
187             Some(m) => JustBefore(m),
188             None => AfterMax,
189         };
190         [lo, hi]
191     }
192
193     /// Add ranges relative to which we split.
194     fn split(&mut self, ranges: impl Iterator<Item = IntRange>) {
195         let this_range = &self.range;
196         let included_ranges = ranges.filter_map(|r| this_range.intersection(&r));
197         let included_borders = included_ranges.flat_map(|r| {
198             let borders = Self::to_borders(r);
199             once(borders[0]).chain(once(borders[1]))
200         });
201         self.borders.extend(included_borders);
202         self.borders.sort_unstable();
203     }
204
205     /// Iterate over the contained ranges.
206     fn iter(&self) -> impl Iterator<Item = IntRange> + '_ {
207         use IntBorder::*;
208
209         let self_range = Self::to_borders(self.range.clone());
210         // Start with the start of the range.
211         let mut prev_border = self_range[0];
212         self.borders
213             .iter()
214             .copied()
215             // End with the end of the range.
216             .chain(once(self_range[1]))
217             // List pairs of adjacent borders.
218             .map(move |border| {
219                 let ret = (prev_border, border);
220                 prev_border = border;
221                 ret
222             })
223             // Skip duplicates.
224             .filter(|(prev_border, border)| prev_border != border)
225             // Finally, convert to ranges.
226             .map(|(prev_border, border)| {
227                 let range = match (prev_border, border) {
228                     (JustBefore(n), JustBefore(m)) if n < m => n..=(m - 1),
229                     (JustBefore(n), AfterMax) => n..=u128::MAX,
230                     _ => unreachable!(), // Ruled out by the sorting and filtering we did
231                 };
232                 IntRange { range }
233             })
234     }
235 }
236
237 /// A constructor for array and slice patterns.
238 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
239 pub(super) struct Slice {
240     _unimplemented: Void,
241 }
242
243 impl Slice {
244     /// See `Constructor::is_covered_by`
245     fn is_covered_by(self, _other: Self) -> bool {
246         unimplemented!() // never called as Slice contains Void
247     }
248 }
249
250 /// A value can be decomposed into a constructor applied to some fields. This struct represents
251 /// the constructor. See also `Fields`.
252 ///
253 /// `pat_constructor` retrieves the constructor corresponding to a pattern.
254 /// `specialize_constructor` returns the list of fields corresponding to a pattern, given a
255 /// constructor. `Constructor::apply` reconstructs the pattern from a pair of `Constructor` and
256 /// `Fields`.
257 #[allow(dead_code)]
258 #[derive(Clone, Debug, PartialEq)]
259 pub(super) enum Constructor {
260     /// The constructor for patterns that have a single constructor, like tuples, struct patterns
261     /// and fixed-length arrays.
262     Single,
263     /// Enum variants.
264     Variant(EnumVariantId),
265     /// Ranges of integer literal values (`2`, `2..=5` or `2..5`).
266     IntRange(IntRange),
267     /// Ranges of floating-point literal values (`2.0..=5.2`).
268     FloatRange(Void),
269     /// String literals. Strings are not quite the same as `&[u8]` so we treat them separately.
270     Str(Void),
271     /// Array and slice patterns.
272     Slice(Slice),
273     /// Constants that must not be matched structurally. They are treated as black
274     /// boxes for the purposes of exhaustiveness: we must not inspect them, and they
275     /// don't count towards making a match exhaustive.
276     Opaque,
277     /// Fake extra constructor for enums that aren't allowed to be matched exhaustively. Also used
278     /// for those types for which we cannot list constructors explicitly, like `f64` and `str`.
279     NonExhaustive,
280     /// Stands for constructors that are not seen in the matrix, as explained in the documentation
281     /// for [`SplitWildcard`].
282     Missing,
283     /// Wildcard pattern.
284     Wildcard,
285 }
286
287 impl Constructor {
288     pub(super) fn is_wildcard(&self) -> bool {
289         matches!(self, Wildcard)
290     }
291
292     fn as_int_range(&self) -> Option<&IntRange> {
293         match self {
294             IntRange(range) => Some(range),
295             _ => None,
296         }
297     }
298
299     fn as_slice(&self) -> Option<Slice> {
300         match self {
301             Slice(slice) => Some(*slice),
302             _ => None,
303         }
304     }
305
306     fn variant_id_for_adt(&self, adt: hir_def::AdtId) -> VariantId {
307         match *self {
308             Variant(id) => id.into(),
309             Single => {
310                 assert!(!matches!(adt, hir_def::AdtId::EnumId(_)));
311                 match adt {
312                     hir_def::AdtId::EnumId(_) => unreachable!(),
313                     hir_def::AdtId::StructId(id) => id.into(),
314                     hir_def::AdtId::UnionId(id) => id.into(),
315                 }
316             }
317             _ => panic!("bad constructor {:?} for adt {:?}", self, adt),
318         }
319     }
320
321     /// Determines the constructor that the given pattern can be specialized to.
322     pub(super) fn from_pat(cx: &MatchCheckCtx<'_>, pat: PatId) -> Self {
323         match cx.pattern_arena.borrow()[pat].kind.as_ref() {
324             PatKind::Binding { .. } | PatKind::Wild => Wildcard,
325             PatKind::Leaf { .. } | PatKind::Deref { .. } => Single,
326             &PatKind::Variant { enum_variant, .. } => Variant(enum_variant),
327             &PatKind::LiteralBool { value } => IntRange(IntRange::from_bool(value)),
328             PatKind::Or { .. } => cx.bug("Or-pattern should have been expanded earlier on."),
329         }
330     }
331
332     /// Some constructors (namely `Wildcard`, `IntRange` and `Slice`) actually stand for a set of actual
333     /// constructors (like variants, integers or fixed-sized slices). When specializing for these
334     /// constructors, we want to be specialising for the actual underlying constructors.
335     /// Naively, we would simply return the list of constructors they correspond to. We instead are
336     /// more clever: if there are constructors that we know will behave the same wrt the current
337     /// matrix, we keep them grouped. For example, all slices of a sufficiently large length
338     /// will either be all useful or all non-useful with a given matrix.
339     ///
340     /// See the branches for details on how the splitting is done.
341     ///
342     /// This function may discard some irrelevant constructors if this preserves behavior and
343     /// diagnostics. Eg. for the `_` case, we ignore the constructors already present in the
344     /// matrix, unless all of them are.
345     pub(super) fn split<'a>(
346         &self,
347         pcx: PatCtxt<'_>,
348         ctors: impl Iterator<Item = &'a Constructor> + Clone,
349     ) -> SmallVec<[Self; 1]> {
350         match self {
351             Wildcard => {
352                 let mut split_wildcard = SplitWildcard::new(pcx);
353                 split_wildcard.split(pcx, ctors);
354                 split_wildcard.into_ctors(pcx)
355             }
356             // Fast-track if the range is trivial. In particular, we don't do the overlapping
357             // ranges check.
358             IntRange(ctor_range) if !ctor_range.is_singleton() => {
359                 let mut split_range = SplitIntRange::new(ctor_range.clone());
360                 let int_ranges = ctors.filter_map(|ctor| ctor.as_int_range());
361                 split_range.split(int_ranges.cloned());
362                 split_range.iter().map(IntRange).collect()
363             }
364             Slice(_) => unimplemented!(),
365             // Any other constructor can be used unchanged.
366             _ => smallvec![self.clone()],
367         }
368     }
369
370     /// Returns whether `self` is covered by `other`, i.e. whether `self` is a subset of `other`.
371     /// For the simple cases, this is simply checking for equality. For the "grouped" constructors,
372     /// this checks for inclusion.
373     // We inline because this has a single call site in `Matrix::specialize_constructor`.
374     #[inline]
375     pub(super) fn is_covered_by(&self, pcx: PatCtxt<'_>, other: &Self) -> bool {
376         // This must be kept in sync with `is_covered_by_any`.
377         match (self, other) {
378             // Wildcards cover anything
379             (_, Wildcard) => true,
380             // The missing ctors are not covered by anything in the matrix except wildcards.
381             (Missing | Wildcard, _) => false,
382
383             (Single, Single) => true,
384             (Variant(self_id), Variant(other_id)) => self_id == other_id,
385
386             (IntRange(self_range), IntRange(other_range)) => self_range.is_covered_by(other_range),
387             (FloatRange(..), FloatRange(..)) => {
388                 unimplemented!()
389             }
390             (Str(..), Str(..)) => {
391                 unimplemented!()
392             }
393             (Slice(self_slice), Slice(other_slice)) => self_slice.is_covered_by(*other_slice),
394
395             // We are trying to inspect an opaque constant. Thus we skip the row.
396             (Opaque, _) | (_, Opaque) => false,
397             // Only a wildcard pattern can match the special extra constructor.
398             (NonExhaustive, _) => false,
399
400             _ => pcx.cx.bug(&format!(
401                 "trying to compare incompatible constructors {:?} and {:?}",
402                 self, other
403             )),
404         }
405     }
406
407     /// Faster version of `is_covered_by` when applied to many constructors. `used_ctors` is
408     /// assumed to be built from `matrix.head_ctors()` with wildcards filtered out, and `self` is
409     /// assumed to have been split from a wildcard.
410     fn is_covered_by_any(&self, pcx: PatCtxt<'_>, used_ctors: &[Constructor]) -> bool {
411         if used_ctors.is_empty() {
412             return false;
413         }
414
415         // This must be kept in sync with `is_covered_by`.
416         match self {
417             // If `self` is `Single`, `used_ctors` cannot contain anything else than `Single`s.
418             Single => !used_ctors.is_empty(),
419             Variant(_) => used_ctors.iter().any(|c| c == self),
420             IntRange(range) => used_ctors
421                 .iter()
422                 .filter_map(|c| c.as_int_range())
423                 .any(|other| range.is_covered_by(other)),
424             Slice(slice) => used_ctors
425                 .iter()
426                 .filter_map(|c| c.as_slice())
427                 .any(|other| slice.is_covered_by(other)),
428             // This constructor is never covered by anything else
429             NonExhaustive => false,
430             Str(..) | FloatRange(..) | Opaque | Missing | Wildcard => {
431                 pcx.cx.bug(&format!("found unexpected ctor in all_ctors: {:?}", self))
432             }
433         }
434     }
435 }
436
437 /// A wildcard constructor that we split relative to the constructors in the matrix, as explained
438 /// at the top of the file.
439 ///
440 /// A constructor that is not present in the matrix rows will only be covered by the rows that have
441 /// wildcards. Thus we can group all of those constructors together; we call them "missing
442 /// constructors". Splitting a wildcard would therefore list all present constructors individually
443 /// (or grouped if they are integers or slices), and then all missing constructors together as a
444 /// group.
445 ///
446 /// However we can go further: since any constructor will match the wildcard rows, and having more
447 /// rows can only reduce the amount of usefulness witnesses, we can skip the present constructors
448 /// and only try the missing ones.
449 /// This will not preserve the whole list of witnesses, but will preserve whether the list is empty
450 /// or not. In fact this is quite natural from the point of view of diagnostics too. This is done
451 /// in `to_ctors`: in some cases we only return `Missing`.
452 #[derive(Debug)]
453 pub(super) struct SplitWildcard {
454     /// Constructors seen in the matrix.
455     matrix_ctors: Vec<Constructor>,
456     /// All the constructors for this type
457     all_ctors: SmallVec<[Constructor; 1]>,
458 }
459
460 impl SplitWildcard {
461     pub(super) fn new(pcx: PatCtxt<'_>) -> Self {
462         let cx = pcx.cx;
463         let make_range = |start, end, scalar| IntRange(IntRange::from_range(start, end, scalar));
464
465         // Unhandled types are treated as non-exhaustive. Being explicit here instead of falling
466         // to catchall arm to ease further implementation.
467         let unhandled = || smallvec![NonExhaustive];
468
469         // This determines the set of all possible constructors for the type `pcx.ty`. For numbers,
470         // arrays and slices we use ranges and variable-length slices when appropriate.
471         //
472         // If the `exhaustive_patterns` feature is enabled, we make sure to omit constructors that
473         // are statically impossible. E.g., for `Option<!>`, we do not include `Some(_)` in the
474         // returned list of constructors.
475         // Invariant: this is empty if and only if the type is uninhabited (as determined by
476         // `cx.is_uninhabited()`).
477         let all_ctors = match pcx.ty.kind(&Interner) {
478             TyKind::Scalar(Scalar::Bool) => smallvec![make_range(0, 1, Scalar::Bool)],
479             // TyKind::Array(..) if ... => unhandled(),
480             TyKind::Array(..) | TyKind::Slice(..) => unhandled(),
481             &TyKind::Adt(AdtId(hir_def::AdtId::EnumId(enum_id)), ref _substs) => {
482                 let enum_data = cx.db.enum_data(enum_id);
483
484                 // If the enum is declared as `#[non_exhaustive]`, we treat it as if it had an
485                 // additional "unknown" constructor.
486                 // There is no point in enumerating all possible variants, because the user can't
487                 // actually match against them all themselves. So we always return only the fictitious
488                 // constructor.
489                 // E.g., in an example like:
490                 //
491                 // ```
492                 //     let err: io::ErrorKind = ...;
493                 //     match err {
494                 //         io::ErrorKind::NotFound => {},
495                 //     }
496                 // ```
497                 //
498                 // we don't want to show every possible IO error, but instead have only `_` as the
499                 // witness.
500                 let is_declared_nonexhaustive = cx.is_foreign_non_exhaustive_enum(enum_id);
501
502                 // If `exhaustive_patterns` is disabled and our scrutinee is an empty enum, we treat it
503                 // as though it had an "unknown" constructor to avoid exposing its emptiness. The
504                 // exception is if the pattern is at the top level, because we want empty matches to be
505                 // considered exhaustive.
506                 let is_secretly_empty = enum_data.variants.is_empty()
507                     && !cx.feature_exhaustive_patterns()
508                     && !pcx.is_top_level;
509
510                 if is_secretly_empty || is_declared_nonexhaustive {
511                     smallvec![NonExhaustive]
512                 } else if cx.feature_exhaustive_patterns() {
513                     unimplemented!() // see MatchCheckCtx.feature_exhaustive_patterns()
514                 } else {
515                     enum_data
516                         .variants
517                         .iter()
518                         .map(|(local_id, ..)| Variant(EnumVariantId { parent: enum_id, local_id }))
519                         .collect()
520                 }
521             }
522             TyKind::Scalar(Scalar::Char) => unhandled(),
523             TyKind::Scalar(Scalar::Int(..) | Scalar::Uint(..)) => unhandled(),
524             TyKind::Never if !cx.feature_exhaustive_patterns() && !pcx.is_top_level => {
525                 smallvec![NonExhaustive]
526             }
527             TyKind::Never => SmallVec::new(),
528             _ if cx.is_uninhabited(pcx.ty) => SmallVec::new(),
529             TyKind::Adt(..) | TyKind::Tuple(..) | TyKind::Ref(..) => smallvec![Single],
530             // This type is one for which we cannot list constructors, like `str` or `f64`.
531             _ => smallvec![NonExhaustive],
532         };
533         SplitWildcard { matrix_ctors: Vec::new(), all_ctors }
534     }
535
536     /// Pass a set of constructors relative to which to split this one. Don't call twice, it won't
537     /// do what you want.
538     pub(super) fn split<'a>(
539         &mut self,
540         pcx: PatCtxt<'_>,
541         ctors: impl Iterator<Item = &'a Constructor> + Clone,
542     ) {
543         // Since `all_ctors` never contains wildcards, this won't recurse further.
544         self.all_ctors =
545             self.all_ctors.iter().flat_map(|ctor| ctor.split(pcx, ctors.clone())).collect();
546         self.matrix_ctors = ctors.filter(|c| !c.is_wildcard()).cloned().collect();
547     }
548
549     /// Whether there are any value constructors for this type that are not present in the matrix.
550     fn any_missing(&self, pcx: PatCtxt<'_>) -> bool {
551         self.iter_missing(pcx).next().is_some()
552     }
553
554     /// Iterate over the constructors for this type that are not present in the matrix.
555     pub(super) fn iter_missing<'a>(
556         &'a self,
557         pcx: PatCtxt<'a>,
558     ) -> impl Iterator<Item = &'a Constructor> {
559         self.all_ctors.iter().filter(move |ctor| !ctor.is_covered_by_any(pcx, &self.matrix_ctors))
560     }
561
562     /// Return the set of constructors resulting from splitting the wildcard. As explained at the
563     /// top of the file, if any constructors are missing we can ignore the present ones.
564     fn into_ctors(self, pcx: PatCtxt<'_>) -> SmallVec<[Constructor; 1]> {
565         if self.any_missing(pcx) {
566             // Some constructors are missing, thus we can specialize with the special `Missing`
567             // constructor, which stands for those constructors that are not seen in the matrix,
568             // and matches the same rows as any of them (namely the wildcard rows). See the top of
569             // the file for details.
570             // However, when all constructors are missing we can also specialize with the full
571             // `Wildcard` constructor. The difference will depend on what we want in diagnostics.
572
573             // If some constructors are missing, we typically want to report those constructors,
574             // e.g.:
575             // ```
576             //     enum Direction { N, S, E, W }
577             //     let Direction::N = ...;
578             // ```
579             // we can report 3 witnesses: `S`, `E`, and `W`.
580             //
581             // However, if the user didn't actually specify a constructor
582             // in this arm, e.g., in
583             // ```
584             //     let x: (Direction, Direction, bool) = ...;
585             //     let (_, _, false) = x;
586             // ```
587             // we don't want to show all 16 possible witnesses `(<direction-1>, <direction-2>,
588             // true)` - we are satisfied with `(_, _, true)`. So if all constructors are missing we
589             // prefer to report just a wildcard `_`.
590             //
591             // The exception is: if we are at the top-level, for example in an empty match, we
592             // sometimes prefer reporting the list of constructors instead of just `_`.
593             let report_when_all_missing = pcx.is_top_level && !IntRange::is_integral(pcx.ty);
594             let ctor = if !self.matrix_ctors.is_empty() || report_when_all_missing {
595                 Missing
596             } else {
597                 Wildcard
598             };
599             return smallvec![ctor];
600         }
601
602         // All the constructors are present in the matrix, so we just go through them all.
603         self.all_ctors
604     }
605 }
606
607 /// A value can be decomposed into a constructor applied to some fields. This struct represents
608 /// those fields, generalized to allow patterns in each field. See also `Constructor`.
609 /// This is constructed from a constructor using [`Fields::wildcards()`].
610 ///
611 /// If a private or `non_exhaustive` field is uninhabited, the code mustn't observe that it is
612 /// uninhabited. For that, we filter these fields out of the matrix. This is handled automatically
613 /// in `Fields`. This filtering is uncommon in practice, because uninhabited fields are rarely used,
614 /// so we avoid it when possible to preserve performance.
615 #[derive(Debug, Clone)]
616 pub(super) enum Fields {
617     /// Lists of patterns that don't contain any filtered fields.
618     /// `Slice` and `Vec` behave the same; the difference is only to avoid allocating and
619     /// triple-dereferences when possible. Frankly this is premature optimization, I (Nadrieril)
620     /// have not measured if it really made a difference.
621     Vec(SmallVec<[PatId; 2]>),
622 }
623
624 impl Fields {
625     /// Internal use. Use `Fields::wildcards()` instead.
626     /// Must not be used if the pattern is a field of a struct/tuple/variant.
627     fn from_single_pattern(pat: PatId) -> Self {
628         Fields::Vec(smallvec![pat])
629     }
630
631     /// Convenience; internal use.
632     fn wildcards_from_tys(cx: &MatchCheckCtx<'_>, tys: impl IntoIterator<Item = Ty>) -> Self {
633         let wilds = tys.into_iter().map(Pat::wildcard_from_ty);
634         let pats = wilds.map(|pat| cx.alloc_pat(pat)).collect();
635         Fields::Vec(pats)
636     }
637
638     /// Creates a new list of wildcard fields for a given constructor.
639     pub(crate) fn wildcards(pcx: PatCtxt<'_>, constructor: &Constructor) -> Self {
640         let ty = pcx.ty;
641         let cx = pcx.cx;
642         let wildcard_from_ty = |ty: &Ty| cx.alloc_pat(Pat::wildcard_from_ty(ty.clone()));
643
644         let ret = match constructor {
645             Single | Variant(_) => match ty.kind(&Interner) {
646                 TyKind::Tuple(_, substs) => {
647                     let tys = substs.iter(&Interner).map(|ty| ty.assert_ty_ref(&Interner));
648                     Fields::wildcards_from_tys(cx, tys.cloned())
649                 }
650                 TyKind::Ref(.., rty) => Fields::from_single_pattern(wildcard_from_ty(rty)),
651                 &TyKind::Adt(AdtId(adt), ref substs) => {
652                     if adt_is_box(adt, cx) {
653                         // Use T as the sub pattern type of Box<T>.
654                         let subst_ty = substs.at(&Interner, 0).assert_ty_ref(&Interner);
655                         Fields::from_single_pattern(wildcard_from_ty(subst_ty))
656                     } else {
657                         let variant_id = constructor.variant_id_for_adt(adt);
658                         let adt_is_local =
659                             variant_id.module(cx.db.upcast()).krate() == cx.module.krate();
660                         // Whether we must not match the fields of this variant exhaustively.
661                         let is_non_exhaustive =
662                             is_field_list_non_exhaustive(variant_id, cx) && !adt_is_local;
663
664                         cov_mark::hit!(match_check_wildcard_expanded_to_substitutions);
665                         let field_ty_data = cx.db.field_types(variant_id);
666                         let field_tys = || {
667                             field_ty_data
668                                 .iter()
669                                 .map(|(_, binders)| binders.clone().substitute(&Interner, substs))
670                         };
671
672                         // In the following cases, we don't need to filter out any fields. This is
673                         // the vast majority of real cases, since uninhabited fields are uncommon.
674                         let has_no_hidden_fields = (matches!(adt, hir_def::AdtId::EnumId(_))
675                             && !is_non_exhaustive)
676                             || !field_tys().any(|ty| cx.is_uninhabited(&ty));
677
678                         if has_no_hidden_fields {
679                             Fields::wildcards_from_tys(cx, field_tys())
680                         } else {
681                             //FIXME(iDawer): see MatchCheckCtx::is_uninhabited, has_no_hidden_fields is always true
682                             unimplemented!("exhaustive_patterns feature")
683                         }
684                     }
685                 }
686                 ty_kind => {
687                     cx.bug(&format!("Unexpected type for `Single` constructor: {:?}", ty_kind))
688                 }
689             },
690             Slice(..) => {
691                 unimplemented!()
692             }
693             Str(..) | FloatRange(..) | IntRange(..) | NonExhaustive | Opaque | Missing
694             | Wildcard => Fields::Vec(Default::default()),
695         };
696         ret
697     }
698
699     /// Apply a constructor to a list of patterns, yielding a new pattern. `self`
700     /// must have as many elements as this constructor's arity.
701     ///
702     /// This is roughly the inverse of `specialize_constructor`.
703     ///
704     /// Examples:
705     /// `ctor`: `Constructor::Single`
706     /// `ty`: `Foo(u32, u32, u32)`
707     /// `self`: `[10, 20, _]`
708     /// returns `Foo(10, 20, _)`
709     ///
710     /// `ctor`: `Constructor::Variant(Option::Some)`
711     /// `ty`: `Option<bool>`
712     /// `self`: `[false]`
713     /// returns `Some(false)`
714     pub(super) fn apply(self, pcx: PatCtxt<'_>, ctor: &Constructor) -> Pat {
715         let subpatterns_and_indices = self.patterns_and_indices();
716         let mut subpatterns =
717             subpatterns_and_indices.iter().map(|&(_, p)| pcx.cx.pattern_arena.borrow()[p].clone());
718         // FIXME(iDawer) witnesses are not yet used
719         const UNHANDLED: PatKind = PatKind::Wild;
720
721         let pat = match ctor {
722             Single | Variant(_) => match pcx.ty.kind(&Interner) {
723                 TyKind::Adt(..) | TyKind::Tuple(..) => {
724                     // We want the real indices here.
725                     let subpatterns = subpatterns_and_indices
726                         .iter()
727                         .map(|&(field, pat)| FieldPat {
728                             field,
729                             pattern: pcx.cx.pattern_arena.borrow()[pat].clone(),
730                         })
731                         .collect();
732
733                     if let Some((adt, substs)) = pcx.ty.as_adt() {
734                         if let hir_def::AdtId::EnumId(_) = adt {
735                             let enum_variant = match ctor {
736                                 &Variant(id) => id,
737                                 _ => unreachable!(),
738                             };
739                             PatKind::Variant { substs: substs.clone(), enum_variant, subpatterns }
740                         } else {
741                             PatKind::Leaf { subpatterns }
742                         }
743                     } else {
744                         PatKind::Leaf { subpatterns }
745                     }
746                 }
747                 // Note: given the expansion of `&str` patterns done in `expand_pattern`, we should
748                 // be careful to reconstruct the correct constant pattern here. However a string
749                 // literal pattern will never be reported as a non-exhaustiveness witness, so we
750                 // can ignore this issue.
751                 TyKind::Ref(..) => PatKind::Deref { subpattern: subpatterns.next().unwrap() },
752                 TyKind::Slice(..) | TyKind::Array(..) => {
753                     pcx.cx.bug(&format!("bad slice pattern {:?} {:?}", ctor, pcx.ty))
754                 }
755                 _ => PatKind::Wild,
756             },
757             Constructor::Slice(_) => UNHANDLED,
758             Str(_) => UNHANDLED,
759             FloatRange(..) => UNHANDLED,
760             Constructor::IntRange(_) => UNHANDLED,
761             NonExhaustive => PatKind::Wild,
762             Wildcard => return Pat::wildcard_from_ty(pcx.ty.clone()),
763             Opaque => pcx.cx.bug("we should not try to apply an opaque constructor"),
764             Missing => pcx.cx.bug(
765                 "trying to apply the `Missing` constructor;\
766                 this should have been done in `apply_constructors`",
767             ),
768         };
769
770         Pat { ty: pcx.ty.clone(), kind: Box::new(pat) }
771     }
772
773     /// Returns the number of patterns. This is the same as the arity of the constructor used to
774     /// construct `self`.
775     pub(super) fn len(&self) -> usize {
776         match self {
777             Fields::Vec(pats) => pats.len(),
778         }
779     }
780
781     /// Returns the list of patterns along with the corresponding field indices.
782     fn patterns_and_indices(&self) -> SmallVec<[(LocalFieldId, PatId); 2]> {
783         match self {
784             Fields::Vec(pats) => pats
785                 .iter()
786                 .copied()
787                 .enumerate()
788                 .map(|(i, p)| (LocalFieldId::from_raw((i as u32).into()), p))
789                 .collect(),
790         }
791     }
792
793     pub(super) fn into_patterns(self) -> SmallVec<[PatId; 2]> {
794         match self {
795             Fields::Vec(pats) => pats,
796         }
797     }
798
799     /// Overrides some of the fields with the provided patterns. Exactly like
800     /// `replace_fields_indexed`, except that it takes `FieldPat`s as input.
801     fn replace_with_fieldpats(
802         &self,
803         new_pats: impl IntoIterator<Item = (LocalFieldId, PatId)>,
804     ) -> Self {
805         self.replace_fields_indexed(
806             new_pats.into_iter().map(|(field, pat)| (u32::from(field.into_raw()) as usize, pat)),
807         )
808     }
809
810     /// Overrides some of the fields with the provided patterns. This is used when a pattern
811     /// defines some fields but not all, for example `Foo { field1: Some(_), .. }`: here we start
812     /// with a `Fields` that is just one wildcard per field of the `Foo` struct, and override the
813     /// entry corresponding to `field1` with the pattern `Some(_)`. This is also used for slice
814     /// patterns for the same reason.
815     fn replace_fields_indexed(&self, new_pats: impl IntoIterator<Item = (usize, PatId)>) -> Self {
816         let mut fields = self.clone();
817
818         match &mut fields {
819             Fields::Vec(pats) => {
820                 for (i, pat) in new_pats {
821                     if let Some(p) = pats.get_mut(i) {
822                         *p = pat;
823                     }
824                 }
825             }
826         }
827         fields
828     }
829
830     /// Replaces contained fields with the given list of patterns. There must be `len()` patterns
831     /// in `pats`.
832     pub(super) fn replace_fields(
833         &self,
834         cx: &MatchCheckCtx<'_>,
835         pats: impl IntoIterator<Item = Pat>,
836     ) -> Self {
837         let pats = pats.into_iter().map(|pat| cx.alloc_pat(pat)).collect();
838
839         match self {
840             Fields::Vec(_) => Fields::Vec(pats),
841         }
842     }
843
844     /// Replaces contained fields with the arguments of the given pattern. Only use on a pattern
845     /// that is compatible with the constructor used to build `self`.
846     /// This is meant to be used on the result of `Fields::wildcards()`. The idea is that
847     /// `wildcards` constructs a list of fields where all entries are wildcards, and the pattern
848     /// provided to this function fills some of the fields with non-wildcards.
849     /// In the following example `Fields::wildcards` would return `[_, _, _, _]`. If we call
850     /// `replace_with_pattern_arguments` on it with the pattern, the result will be `[Some(0), _,
851     /// _, _]`.
852     /// ```rust
853     /// let x: [Option<u8>; 4] = foo();
854     /// match x {
855     ///     [Some(0), ..] => {}
856     /// }
857     /// ```
858     /// This is guaranteed to preserve the number of patterns in `self`.
859     pub(super) fn replace_with_pattern_arguments(
860         &self,
861         pat: PatId,
862         cx: &MatchCheckCtx<'_>,
863     ) -> Self {
864         // FIXME(iDawer): Factor out pattern deep cloning. See discussion:
865         // https://github.com/rust-analyzer/rust-analyzer/pull/8717#discussion_r633086640
866         let mut arena = cx.pattern_arena.borrow_mut();
867         match arena[pat].kind.as_ref() {
868             PatKind::Deref { subpattern } => {
869                 assert_eq!(self.len(), 1);
870                 let subpattern = subpattern.clone();
871                 Fields::from_single_pattern(arena.alloc(subpattern))
872             }
873             PatKind::Leaf { subpatterns } | PatKind::Variant { subpatterns, .. } => {
874                 let subpatterns = subpatterns.clone();
875                 let subpatterns = subpatterns
876                     .iter()
877                     .map(|field_pat| (field_pat.field, arena.alloc(field_pat.pattern.clone())));
878                 self.replace_with_fieldpats(subpatterns)
879             }
880
881             PatKind::Wild
882             | PatKind::Binding { .. }
883             | PatKind::LiteralBool { .. }
884             | PatKind::Or { .. } => self.clone(),
885         }
886     }
887 }
888
889 fn is_field_list_non_exhaustive(variant_id: VariantId, cx: &MatchCheckCtx<'_>) -> bool {
890     let attr_def_id = match variant_id {
891         VariantId::EnumVariantId(id) => id.into(),
892         VariantId::StructId(id) => id.into(),
893         VariantId::UnionId(id) => id.into(),
894     };
895     cx.db.attrs(attr_def_id).by_key("non_exhaustive").exists()
896 }
897
898 fn adt_is_box(adt: hir_def::AdtId, cx: &MatchCheckCtx<'_>) -> bool {
899     use hir_def::lang_item::LangItemTarget;
900     match cx.db.lang_item(cx.module.krate(), "owned_box".into()) {
901         Some(LangItemTarget::StructId(box_id)) => adt == box_id.into(),
902         _ => false,
903     }
904 }