]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/hair/pattern/_match.rs
Factor out witness reconstruction
[rust.git] / src / librustc_mir / hair / pattern / _match.rs
1 /// This file includes the logic for exhaustiveness and usefulness checking for
2 /// pattern-matching. Specifically, given a list of patterns for a type, we can
3 /// tell whether:
4 /// (a) the patterns cover every possible constructor for the type [exhaustiveness]
5 /// (b) each pattern is necessary [usefulness]
6 ///
7 /// The algorithm implemented here is a modified version of the one described in:
8 /// http://moscova.inria.fr/~maranget/papers/warn/index.html
9 /// However, to save future implementors from reading the original paper, we
10 /// summarise the algorithm here to hopefully save time and be a little clearer
11 /// (without being so rigorous).
12 ///
13 /// The core of the algorithm revolves about a "usefulness" check. In particular, we
14 /// are trying to compute a predicate `U(P, p)` where `P` is a list of patterns (we refer to this as
15 /// a matrix). `U(P, p)` represents whether, given an existing list of patterns
16 /// `P_1 ..= P_m`, adding a new pattern `p` will be "useful" (that is, cover previously-
17 /// uncovered values of the type).
18 ///
19 /// If we have this predicate, then we can easily compute both exhaustiveness of an
20 /// entire set of patterns and the individual usefulness of each one.
21 /// (a) the set of patterns is exhaustive iff `U(P, _)` is false (i.e., adding a wildcard
22 /// match doesn't increase the number of values we're matching)
23 /// (b) a pattern `P_i` is not useful if `U(P[0..=(i-1), P_i)` is false (i.e., adding a
24 /// pattern to those that have come before it doesn't increase the number of values
25 /// we're matching).
26 ///
27 /// During the course of the algorithm, the rows of the matrix won't just be individual patterns,
28 /// but rather partially-deconstructed patterns in the form of a list of patterns. The paper
29 /// calls those pattern-vectors, and we will call them pattern-stacks. The same holds for the
30 /// new pattern `p`.
31 ///
32 /// For example, say we have the following:
33 /// ```
34 ///     // x: (Option<bool>, Result<()>)
35 ///     match x {
36 ///         (Some(true), _) => {}
37 ///         (None, Err(())) => {}
38 ///         (None, Err(_)) => {}
39 ///     }
40 /// ```
41 /// Here, the matrix `P` starts as:
42 /// [
43 ///     [(Some(true), _)],
44 ///     [(None, Err(()))],
45 ///     [(None, Err(_))],
46 /// ]
47 /// We can tell it's not exhaustive, because `U(P, _)` is true (we're not covering
48 /// `[(Some(false), _)]`, for instance). In addition, row 3 is not useful, because
49 /// all the values it covers are already covered by row 2.
50 ///
51 /// A list of patterns can be thought of as a stack, because we are mainly interested in the top of
52 /// the stack at any given point, and we can pop or apply constructors to get new pattern-stacks.
53 /// To match the paper, the top of the stack is at the beginning / on the left.
54 ///
55 /// There are two important operations on pattern-stacks necessary to understand the algorithm:
56 ///     1. We can pop a given constructor off the top of a stack. This operation is called
57 ///        `specialize`, and is denoted `S(c, p)` where `c` is a constructor (like `Some` or
58 ///        `None`) and `p` a pattern-stack.
59 ///        If the pattern on top of the stack can cover `c`, this removes the constructor and
60 ///        pushes its arguments onto the stack. It also expands OR-patterns into distinct patterns.
61 ///        Otherwise the pattern-stack is discarded.
62 ///        This essentially filters those pattern-stacks whose top covers the constructor `c` and
63 ///        discards the others.
64 ///
65 ///        For example, the first pattern above initially gives a stack `[(Some(true), _)]`. If we
66 ///        pop the tuple constructor, we are left with `[Some(true), _]`, and if we then pop the
67 ///        `Some` constructor we get `[true, _]`. If we had popped `None` instead, we would get
68 ///        nothing back.
69 ///
70 ///        This returns zero or more new pattern-stacks, as follows. We look at the pattern `p_1`
71 ///        on top of the stack, and we have four cases:
72 ///             1.1. `p_1 = c(r_1, .., r_a)`, i.e. the top of the stack has constructor `c`. We
73 ///                  push onto the stack the arguments of this constructor, and return the result:
74 ///                     r_1, .., r_a, p_2, .., p_n
75 ///             1.2. `p_1 = c'(r_1, .., r_a')` where `c ≠ c'`. We discard the current stack and
76 ///                  return nothing.
77 ///             1.3. `p_1 = _`. We push onto the stack as many wildcards as the constructor `c` has
78 ///                  arguments (its arity), and return the resulting stack:
79 ///                     _, .., _, p_2, .., p_n
80 ///             1.4. `p_1 = r_1 | r_2`. We expand the OR-pattern and then recurse on each resulting
81 ///                  stack:
82 ///                     S(c, (r_1, p_2, .., p_n))
83 ///                     S(c, (r_2, p_2, .., p_n))
84 ///
85 ///     2. We can pop a wildcard off the top of the stack. This is called `D(p)`, where `p` is
86 ///        a pattern-stack.
87 ///        This is used when we know there are missing constructor cases, but there might be
88 ///        existing wildcard patterns, so to check the usefulness of the matrix, we have to check
89 ///        all its *other* components.
90 ///
91 ///        It is computed as follows. We look at the pattern `p_1` on top of the stack,
92 ///        and we have three cases:
93 ///             1.1. `p_1 = c(r_1, .., r_a)`. We discard the current stack and return nothing.
94 ///             1.2. `p_1 = _`. We return the rest of the stack:
95 ///                     p_2, .., p_n
96 ///             1.3. `p_1 = r_1 | r_2`. We expand the OR-pattern and then recurse on each resulting
97 ///               stack.
98 ///                     D((r_1, p_2, .., p_n))
99 ///                     D((r_2, p_2, .., p_n))
100 ///
101 ///     Note that the OR-patterns are not always used directly in Rust, but are used to derive the
102 ///     exhaustive integer matching rules, so they're written here for posterity.
103 ///
104 /// Both those operations extend straightforwardly to a list or pattern-stacks, i.e. a matrix, by
105 /// working row-by-row. Popping a constructor ends up keeping only the matrix rows that start with
106 /// the given constructor, and popping a wildcard keeps those rows that start with a wildcard.
107 ///
108 ///
109 /// The algorithm for computing `U`
110 /// -------------------------------
111 /// The algorithm is inductive (on the number of columns: i.e., components of tuple patterns).
112 /// That means we're going to check the components from left-to-right, so the algorithm
113 /// operates principally on the first component of the matrix and new pattern-stack `p`.
114 /// This algorithm is realised in the `is_useful` function.
115 ///
116 /// Base case. (`n = 0`, i.e., an empty tuple pattern)
117 ///     - If `P` already contains an empty pattern (i.e., if the number of patterns `m > 0`),
118 ///       then `U(P, p)` is false.
119 ///     - Otherwise, `P` must be empty, so `U(P, p)` is true.
120 ///
121 /// Inductive step. (`n > 0`, i.e., whether there's at least one column
122 ///                  [which may then be expanded into further columns later])
123 ///     We're going to match on the top of the new pattern-stack, `p_1`.
124 ///         - If `p_1 == c(r_1, .., r_a)`, i.e. we have a constructor pattern.
125 ///           Then, the usefulness of `p_1` can be reduced to whether it is useful when
126 ///           we ignore all the patterns in the first column of `P` that involve other constructors.
127 ///           This is where `S(c, P)` comes in:
128 ///           `U(P, p) := U(S(c, P), S(c, p))`
129 ///           This special case is handled in `is_useful_specialized`.
130 ///
131 ///           For example, if `P` is:
132 ///           [
133 ///               [Some(true), _],
134 ///               [None, 0],
135 ///           ]
136 ///           and `p` is [Some(false), 0], then we don't care about row 2 since we know `p` only
137 ///           matches values that row 2 doesn't. For row 1 however, we need to dig into the
138 ///           arguments of `Some` to know whether some new value is covered. So we compute
139 ///           `U([[true, _]], [false, 0])`.
140 ///
141 ///         - If `p_1 == _`, then we look at the list of constructors that appear in the first
142 ///               component of the rows of `P`:
143 ///             + If there are some constructors that aren't present, then we might think that the
144 ///               wildcard `_` is useful, since it covers those constructors that weren't covered
145 ///               before.
146 ///               That's almost correct, but only works if there were no wildcards in those first
147 ///               components. So we need to check that `p` is useful with respect to the rows that
148 ///               start with a wildcard, if there are any. This is where `D` comes in:
149 ///               `U(P, p) := U(D(P), D(p))`
150 ///
151 ///               For example, if `P` is:
152 ///               [
153 ///                   [_, true, _],
154 ///                   [None, false, 1],
155 ///               ]
156 ///               and `p` is [_, false, _], the `Some` constructor doesn't appear in `P`. So if we
157 ///               only had row 2, we'd know that `p` is useful. However row 1 starts with a
158 ///               wildcard, so we need to check whether `U([[true, _]], [false, 1])`.
159 ///
160 ///             + Otherwise, all possible constructors (for the relevant type) are present. In this
161 ///               case we must check whether the wildcard pattern covers any unmatched value. For
162 ///               that, we can think of the `_` pattern as a big OR-pattern that covers all
163 ///               possible constructors. For `Option`, that would mean `_ = None | Some(_)` for
164 ///               example. The wildcard pattern is useful in this case if it is useful when
165 ///               specialized to one of the possible constructors. So we compute:
166 ///               `U(P, p) := ∃(k ϵ constructors) U(S(k, P), S(k, p))`
167 ///
168 ///               For example, if `P` is:
169 ///               [
170 ///                   [Some(true), _],
171 ///                   [None, false],
172 ///               ]
173 ///               and `p` is [_, false], both `None` and `Some` constructors appear in the first
174 ///               components of `P`. We will therefore try popping both constructors in turn: we
175 ///               compute U([[true, _]], [_, false]) for the `Some` constructor, and U([[false]],
176 ///               [false]) for the `None` constructor. The first case returns true, so we know that
177 ///               `p` is useful for `P`. Indeed, it matches `[Some(false), _]` that wasn't matched
178 ///               before.
179 ///
180 ///         - If `p_1 == r_1 | r_2`, then the usefulness depends on each `r_i` separately:
181 ///           `U(P, p) := U(P, (r_1, p_2, .., p_n))
182 ///                    || U(P, (r_2, p_2, .., p_n))`
183 ///
184 /// Modifications to the algorithm
185 /// ------------------------------
186 /// The algorithm in the paper doesn't cover some of the special cases that arise in Rust, for
187 /// example uninhabited types and variable-length slice patterns. These are drawn attention to
188 /// throughout the code below. I'll make a quick note here about how exhaustive integer matching is
189 /// accounted for, though.
190 ///
191 /// Exhaustive integer matching
192 /// ---------------------------
193 /// An integer type can be thought of as a (huge) sum type: 1 | 2 | 3 | ...
194 /// So to support exhaustive integer matching, we can make use of the logic in the paper for
195 /// OR-patterns. However, we obviously can't just treat ranges x..=y as individual sums, because
196 /// they are likely gigantic. So we instead treat ranges as constructors of the integers. This means
197 /// that we have a constructor *of* constructors (the integers themselves). We then need to work
198 /// through all the inductive step rules above, deriving how the ranges would be treated as
199 /// OR-patterns, and making sure that they're treated in the same way even when they're ranges.
200 /// There are really only four special cases here:
201 /// - When we match on a constructor that's actually a range, we have to treat it as if we would
202 ///   an OR-pattern.
203 ///     + It turns out that we can simply extend the case for single-value patterns in
204 ///      `specialize` to either be *equal* to a value constructor, or *contained within* a range
205 ///      constructor.
206 ///     + When the pattern itself is a range, you just want to tell whether any of the values in
207 ///       the pattern range coincide with values in the constructor range, which is precisely
208 ///       intersection.
209 ///   Since when encountering a range pattern for a value constructor, we also use inclusion, it
210 ///   means that whenever the constructor is a value/range and the pattern is also a value/range,
211 ///   we can simply use intersection to test usefulness.
212 /// - When we're testing for usefulness of a pattern and the pattern's first component is a
213 ///   wildcard.
214 ///     + If all the constructors appear in the matrix, we have a slight complication. By default,
215 ///       the behaviour (i.e., a disjunction over specialised matrices for each constructor) is
216 ///       invalid, because we want a disjunction over every *integer* in each range, not just a
217 ///       disjunction over every range. This is a bit more tricky to deal with: essentially we need
218 ///       to form equivalence classes of subranges of the constructor range for which the behaviour
219 ///       of the matrix `P` and new pattern `p` are the same. This is described in more
220 ///       detail in `split_grouped_constructors`.
221 ///     + If some constructors are missing from the matrix, it turns out we don't need to do
222 ///       anything special (because we know none of the integers are actually wildcards: i.e., we
223 ///       can't span wildcards using ranges).
224 use self::Constructor::*;
225 use self::Usefulness::*;
226 use self::WitnessPreference::*;
227
228 use rustc_data_structures::fx::FxHashMap;
229 use rustc_index::vec::Idx;
230
231 use super::{compare_const_vals, PatternFoldable, PatternFolder};
232 use super::{FieldPat, Pat, PatKind, PatRange};
233
234 use rustc::hir::def_id::DefId;
235 use rustc::hir::{HirId, RangeEnd};
236 use rustc::ty::layout::{Integer, IntegerExt, Size, VariantIdx};
237 use rustc::ty::{self, Const, Ty, TyCtxt, TypeFoldable};
238
239 use rustc::lint;
240 use rustc::mir::interpret::{truncate, AllocId, ConstValue, Pointer, Scalar};
241 use rustc::mir::Field;
242 use rustc::util::captures::Captures;
243 use rustc::util::common::ErrorReported;
244
245 use syntax::attr::{SignedInt, UnsignedInt};
246 use syntax_pos::{Span, DUMMY_SP};
247
248 use arena::TypedArena;
249
250 use smallvec::{smallvec, SmallVec};
251 use std::cmp::{self, max, min, Ordering};
252 use std::convert::TryInto;
253 use std::fmt;
254 use std::iter::{FromIterator, IntoIterator};
255 use std::ops::RangeInclusive;
256 use std::u128;
257
258 pub fn expand_pattern<'a, 'tcx>(cx: &MatchCheckCtxt<'a, 'tcx>, pat: Pat<'tcx>) -> Pat<'tcx> {
259     LiteralExpander { tcx: cx.tcx }.fold_pattern(&pat)
260 }
261
262 struct LiteralExpander<'tcx> {
263     tcx: TyCtxt<'tcx>,
264 }
265
266 impl LiteralExpander<'tcx> {
267     /// Derefs `val` and potentially unsizes the value if `crty` is an array and `rty` a slice.
268     ///
269     /// `crty` and `rty` can differ because you can use array constants in the presence of slice
270     /// patterns. So the pattern may end up being a slice, but the constant is an array. We convert
271     /// the array to a slice in that case.
272     fn fold_const_value_deref(
273         &mut self,
274         val: ConstValue<'tcx>,
275         // the pattern's pointee type
276         rty: Ty<'tcx>,
277         // the constant's pointee type
278         crty: Ty<'tcx>,
279     ) -> ConstValue<'tcx> {
280         debug!("fold_const_value_deref {:?} {:?} {:?}", val, rty, crty);
281         match (val, &crty.kind, &rty.kind) {
282             // the easy case, deref a reference
283             (ConstValue::Scalar(Scalar::Ptr(p)), x, y) if x == y => {
284                 let alloc = self.tcx.alloc_map.lock().unwrap_memory(p.alloc_id);
285                 ConstValue::ByRef { alloc, offset: p.offset }
286             }
287             // unsize array to slice if pattern is array but match value or other patterns are slice
288             (ConstValue::Scalar(Scalar::Ptr(p)), ty::Array(t, n), ty::Slice(u)) => {
289                 assert_eq!(t, u);
290                 ConstValue::Slice {
291                     data: self.tcx.alloc_map.lock().unwrap_memory(p.alloc_id),
292                     start: p.offset.bytes().try_into().unwrap(),
293                     end: n.eval_usize(self.tcx, ty::ParamEnv::empty()).try_into().unwrap(),
294                 }
295             }
296             // fat pointers stay the same
297             (ConstValue::Slice { .. }, _, _)
298             | (_, ty::Slice(_), ty::Slice(_))
299             | (_, ty::Str, ty::Str) => val,
300             // FIXME(oli-obk): this is reachable for `const FOO: &&&u32 = &&&42;` being used
301             _ => bug!("cannot deref {:#?}, {} -> {}", val, crty, rty),
302         }
303     }
304 }
305
306 impl PatternFolder<'tcx> for LiteralExpander<'tcx> {
307     fn fold_pattern(&mut self, pat: &Pat<'tcx>) -> Pat<'tcx> {
308         debug!("fold_pattern {:?} {:?} {:?}", pat, pat.ty.kind, pat.kind);
309         match (&pat.ty.kind, &*pat.kind) {
310             (
311                 &ty::Ref(_, rty, _),
312                 &PatKind::Constant {
313                     value: Const { val, ty: ty::TyS { kind: ty::Ref(_, crty, _), .. } },
314                 },
315             ) => Pat {
316                 ty: pat.ty,
317                 span: pat.span,
318                 kind: box PatKind::Deref {
319                     subpattern: Pat {
320                         ty: rty,
321                         span: pat.span,
322                         kind: box PatKind::Constant {
323                             value: self.tcx.mk_const(Const {
324                                 val: self.fold_const_value_deref(*val, rty, crty),
325                                 ty: rty,
326                             }),
327                         },
328                     },
329                 },
330             },
331             (_, &PatKind::Binding { subpattern: Some(ref s), .. }) => s.fold_with(self),
332             _ => pat.super_fold_with(self),
333         }
334     }
335 }
336
337 impl<'tcx> Pat<'tcx> {
338     fn is_wildcard(&self) -> bool {
339         match *self.kind {
340             PatKind::Binding { subpattern: None, .. } | PatKind::Wild => true,
341             _ => false,
342         }
343     }
344 }
345
346 /// A row of a matrix. Rows of len 1 are very common, which is why `SmallVec[_; 2]`
347 /// works well.
348 #[derive(Debug, Clone)]
349 pub struct PatStack<'p, 'tcx>(SmallVec<[&'p Pat<'tcx>; 2]>);
350
351 impl<'p, 'tcx> PatStack<'p, 'tcx> {
352     pub fn from_pattern(pat: &'p Pat<'tcx>) -> Self {
353         PatStack(smallvec![pat])
354     }
355
356     fn from_vec(vec: SmallVec<[&'p Pat<'tcx>; 2]>) -> Self {
357         PatStack(vec)
358     }
359
360     fn from_slice(s: &[&'p Pat<'tcx>]) -> Self {
361         PatStack(SmallVec::from_slice(s))
362     }
363
364     fn is_empty(&self) -> bool {
365         self.0.is_empty()
366     }
367
368     fn len(&self) -> usize {
369         self.0.len()
370     }
371
372     fn head(&self) -> &'p Pat<'tcx> {
373         self.0[0]
374     }
375
376     fn to_tail(&self) -> Self {
377         PatStack::from_slice(&self.0[1..])
378     }
379
380     fn iter(&self) -> impl Iterator<Item = &Pat<'tcx>> {
381         self.0.iter().map(|p| *p)
382     }
383
384     /// This computes `D(self)`. See top of the file for explanations.
385     fn specialize_wildcard(&self) -> Option<Self> {
386         if self.head().is_wildcard() { Some(self.to_tail()) } else { None }
387     }
388
389     /// This computes `S(constructor, self)`. See top of the file for explanations.
390     fn specialize_constructor<'a, 'q>(
391         &self,
392         cx: &mut MatchCheckCtxt<'a, 'tcx>,
393         constructor: &Constructor<'tcx>,
394         ctor_wild_subpatterns: &[&'q Pat<'tcx>],
395     ) -> Option<PatStack<'q, 'tcx>>
396     where
397         'a: 'q,
398         'p: 'q,
399     {
400         let new_heads = specialize_one_pattern(cx, self.head(), constructor, ctor_wild_subpatterns);
401         new_heads.map(|mut new_head| {
402             new_head.0.extend_from_slice(&self.0[1..]);
403             new_head
404         })
405     }
406 }
407
408 impl<'p, 'tcx> Default for PatStack<'p, 'tcx> {
409     fn default() -> Self {
410         PatStack(smallvec![])
411     }
412 }
413
414 impl<'p, 'tcx> FromIterator<&'p Pat<'tcx>> for PatStack<'p, 'tcx> {
415     fn from_iter<T>(iter: T) -> Self
416     where
417         T: IntoIterator<Item = &'p Pat<'tcx>>,
418     {
419         PatStack(iter.into_iter().collect())
420     }
421 }
422
423 /// A 2D matrix.
424 pub struct Matrix<'p, 'tcx>(Vec<PatStack<'p, 'tcx>>);
425
426 impl<'p, 'tcx> Matrix<'p, 'tcx> {
427     pub fn empty() -> Self {
428         Matrix(vec![])
429     }
430
431     pub fn push(&mut self, row: PatStack<'p, 'tcx>) {
432         self.0.push(row)
433     }
434
435     /// Iterate over the first component of each row
436     fn heads<'a>(&'a self) -> impl Iterator<Item = &'a Pat<'tcx>> + Captures<'p> {
437         self.0.iter().map(|r| r.head())
438     }
439
440     /// This computes `D(self)`. See top of the file for explanations.
441     fn specialize_wildcard(&self) -> Self {
442         self.0.iter().filter_map(|r| r.specialize_wildcard()).collect()
443     }
444
445     /// This computes `S(constructor, self)`. See top of the file for explanations.
446     fn specialize_constructor<'a, 'q>(
447         &self,
448         cx: &mut MatchCheckCtxt<'a, 'tcx>,
449         constructor: &Constructor<'tcx>,
450         ctor_wild_subpatterns: &[&'q Pat<'tcx>],
451     ) -> Matrix<'q, 'tcx>
452     where
453         'a: 'q,
454         'p: 'q,
455     {
456         Matrix(
457             self.0
458                 .iter()
459                 .filter_map(|r| r.specialize_constructor(cx, constructor, ctor_wild_subpatterns))
460                 .collect(),
461         )
462     }
463 }
464
465 /// Pretty-printer for matrices of patterns, example:
466 /// +++++++++++++++++++++++++++++
467 /// + _     + []                +
468 /// +++++++++++++++++++++++++++++
469 /// + true  + [First]           +
470 /// +++++++++++++++++++++++++++++
471 /// + true  + [Second(true)]    +
472 /// +++++++++++++++++++++++++++++
473 /// + false + [_]               +
474 /// +++++++++++++++++++++++++++++
475 /// + _     + [_, _, tail @ ..] +
476 /// +++++++++++++++++++++++++++++
477 impl<'p, 'tcx> fmt::Debug for Matrix<'p, 'tcx> {
478     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
479         write!(f, "\n")?;
480
481         let &Matrix(ref m) = self;
482         let pretty_printed_matrix: Vec<Vec<String>> =
483             m.iter().map(|row| row.iter().map(|pat| format!("{:?}", pat)).collect()).collect();
484
485         let column_count = m.iter().map(|row| row.len()).max().unwrap_or(0);
486         assert!(m.iter().all(|row| row.len() == column_count));
487         let column_widths: Vec<usize> = (0..column_count)
488             .map(|col| pretty_printed_matrix.iter().map(|row| row[col].len()).max().unwrap_or(0))
489             .collect();
490
491         let total_width = column_widths.iter().cloned().sum::<usize>() + column_count * 3 + 1;
492         let br = "+".repeat(total_width);
493         write!(f, "{}\n", br)?;
494         for row in pretty_printed_matrix {
495             write!(f, "+")?;
496             for (column, pat_str) in row.into_iter().enumerate() {
497                 write!(f, " ")?;
498                 write!(f, "{:1$}", pat_str, column_widths[column])?;
499                 write!(f, " +")?;
500             }
501             write!(f, "\n")?;
502             write!(f, "{}\n", br)?;
503         }
504         Ok(())
505     }
506 }
507
508 impl<'p, 'tcx> FromIterator<PatStack<'p, 'tcx>> for Matrix<'p, 'tcx> {
509     fn from_iter<T>(iter: T) -> Self
510     where
511         T: IntoIterator<Item = PatStack<'p, 'tcx>>,
512     {
513         Matrix(iter.into_iter().collect())
514     }
515 }
516
517 pub struct MatchCheckCtxt<'a, 'tcx> {
518     pub tcx: TyCtxt<'tcx>,
519     /// The module in which the match occurs. This is necessary for
520     /// checking inhabited-ness of types because whether a type is (visibly)
521     /// inhabited can depend on whether it was defined in the current module or
522     /// not. E.g., `struct Foo { _private: ! }` cannot be seen to be empty
523     /// outside it's module and should not be matchable with an empty match
524     /// statement.
525     pub module: DefId,
526     param_env: ty::ParamEnv<'tcx>,
527     pub pattern_arena: &'a TypedArena<Pat<'tcx>>,
528     pub byte_array_map: FxHashMap<*const Pat<'tcx>, Vec<&'a Pat<'tcx>>>,
529 }
530
531 impl<'a, 'tcx> MatchCheckCtxt<'a, 'tcx> {
532     pub fn create_and_enter<F, R>(
533         tcx: TyCtxt<'tcx>,
534         param_env: ty::ParamEnv<'tcx>,
535         module: DefId,
536         f: F,
537     ) -> R
538     where
539         F: for<'b> FnOnce(MatchCheckCtxt<'b, 'tcx>) -> R,
540     {
541         let pattern_arena = TypedArena::default();
542
543         f(MatchCheckCtxt {
544             tcx,
545             param_env,
546             module,
547             pattern_arena: &pattern_arena,
548             byte_array_map: FxHashMap::default(),
549         })
550     }
551
552     fn is_uninhabited(&self, ty: Ty<'tcx>) -> bool {
553         if self.tcx.features().exhaustive_patterns {
554             self.tcx.is_ty_uninhabited_from(self.module, ty)
555         } else {
556             false
557         }
558     }
559
560     fn is_non_exhaustive_enum(&self, ty: Ty<'tcx>) -> bool {
561         match ty.kind {
562             ty::Adt(adt_def, ..) => adt_def.is_variant_list_non_exhaustive(),
563             _ => false,
564         }
565     }
566
567     fn is_local(&self, ty: Ty<'tcx>) -> bool {
568         match ty.kind {
569             ty::Adt(adt_def, ..) => adt_def.did.is_local(),
570             _ => false,
571         }
572     }
573 }
574
575 #[derive(Clone, Debug)]
576 enum Constructor<'tcx> {
577     /// The constructor of all patterns that don't vary by constructor,
578     /// e.g., struct patterns and fixed-length arrays.
579     Single,
580     /// Enum variants.
581     Variant(DefId),
582     /// Literal values.
583     ConstantValue(&'tcx ty::Const<'tcx>, Span),
584     /// Ranges of literal values (`2..=5` and `2..5`).
585     ConstantRange(u128, u128, Ty<'tcx>, RangeEnd, Span),
586     /// Array patterns of length n.
587     Slice(u64),
588 }
589
590 // Ignore spans when comparing, they don't carry semantic information as they are only for lints.
591 impl<'tcx> std::cmp::PartialEq for Constructor<'tcx> {
592     fn eq(&self, other: &Self) -> bool {
593         match (self, other) {
594             (Constructor::Single, Constructor::Single) => true,
595             (Constructor::Variant(a), Constructor::Variant(b)) => a == b,
596             (Constructor::ConstantValue(a, _), Constructor::ConstantValue(b, _)) => a == b,
597             (
598                 Constructor::ConstantRange(a_start, a_end, a_ty, a_range_end, _),
599                 Constructor::ConstantRange(b_start, b_end, b_ty, b_range_end, _),
600             ) => a_start == b_start && a_end == b_end && a_ty == b_ty && a_range_end == b_range_end,
601             (Constructor::Slice(a), Constructor::Slice(b)) => a == b,
602             _ => false,
603         }
604     }
605 }
606
607 impl<'tcx> Constructor<'tcx> {
608     fn is_slice(&self) -> bool {
609         match self {
610             Slice { .. } => true,
611             _ => false,
612         }
613     }
614
615     fn variant_index_for_adt<'a>(
616         &self,
617         cx: &MatchCheckCtxt<'a, 'tcx>,
618         adt: &'tcx ty::AdtDef,
619     ) -> VariantIdx {
620         match self {
621             Variant(id) => adt.variant_index_with_id(*id),
622             Single => {
623                 assert!(!adt.is_enum());
624                 VariantIdx::new(0)
625             }
626             ConstantValue(c, _) => crate::const_eval::const_variant_index(cx.tcx, cx.param_env, c),
627             _ => bug!("bad constructor {:?} for adt {:?}", self, adt),
628         }
629     }
630
631     fn display(&self, tcx: TyCtxt<'tcx>) -> String {
632         match self {
633             Constructor::ConstantValue(val, _) => format!("{}", val),
634             Constructor::ConstantRange(lo, hi, ty, range_end, _) => {
635                 // Get the right sign on the output:
636                 let ty = ty::ParamEnv::empty().and(*ty);
637                 format!(
638                     "{}{}{}",
639                     ty::Const::from_bits(tcx, *lo, ty),
640                     range_end,
641                     ty::Const::from_bits(tcx, *hi, ty),
642                 )
643             }
644             Constructor::Slice(val) => format!("[{}]", val),
645             _ => bug!("bad constructor being displayed: `{:?}", self),
646         }
647     }
648
649     // Returns the set of constructors covered by `self` but not by
650     // anything in `other_ctors`.
651     fn subtract_ctors(
652         &self,
653         tcx: TyCtxt<'tcx>,
654         param_env: ty::ParamEnv<'tcx>,
655         other_ctors: &Vec<Constructor<'tcx>>,
656     ) -> Vec<Constructor<'tcx>> {
657         let mut refined_ctors = vec![self.clone()];
658         for other_ctor in other_ctors {
659             if other_ctor == self {
660                 // If a constructor appears in a `match` arm, we can
661                 // eliminate it straight away.
662                 refined_ctors = vec![]
663             } else if let Some(interval) = IntRange::from_ctor(tcx, param_env, other_ctor) {
664                 // Refine the required constructors for the type by subtracting
665                 // the range defined by the current constructor pattern.
666                 refined_ctors = interval.subtract_from(tcx, param_env, refined_ctors);
667             }
668
669             // If the constructor patterns that have been considered so far
670             // already cover the entire range of values, then we know the
671             // constructor is not missing, and we can move on to the next one.
672             if refined_ctors.is_empty() {
673                 break;
674             }
675         }
676
677         // If a constructor has not been matched, then it is missing.
678         // We add `refined_ctors` instead of `self`, because then we can
679         // provide more detailed error information about precisely which
680         // ranges have been omitted.
681         refined_ctors
682     }
683
684     /// This returns one wildcard pattern for each argument to this constructor.
685     fn wildcard_subpatterns<'a>(
686         &self,
687         cx: &MatchCheckCtxt<'a, 'tcx>,
688         ty: Ty<'tcx>,
689     ) -> impl Iterator<Item = Pat<'tcx>> + DoubleEndedIterator {
690         constructor_sub_pattern_tys(cx, self, ty).into_iter().map(|ty| Pat {
691             ty,
692             span: DUMMY_SP,
693             kind: box PatKind::Wild,
694         })
695     }
696
697     /// This computes the arity of a constructor. The arity of a constructor
698     /// is how many subpattern patterns of that constructor should be expanded to.
699     ///
700     /// For instance, a tuple pattern `(_, 42, Some([]))` has the arity of 3.
701     /// A struct pattern's arity is the number of fields it contains, etc.
702     fn arity<'a>(&self, cx: &MatchCheckCtxt<'a, 'tcx>, ty: Ty<'tcx>) -> u64 {
703         debug!("Constructor::arity({:#?}, {:?})", self, ty);
704         match ty.kind {
705             ty::Tuple(ref fs) => fs.len() as u64,
706             ty::Slice(..) | ty::Array(..) => match *self {
707                 Slice(length) => length,
708                 ConstantValue(..) => 0,
709                 _ => bug!("bad slice pattern {:?} {:?}", self, ty),
710             },
711             ty::Ref(..) => 1,
712             ty::Adt(adt, _) => {
713                 adt.variants[self.variant_index_for_adt(cx, adt)].fields.len() as u64
714             }
715             _ => 0,
716         }
717     }
718
719     /// Apply a constructor to a list of patterns, yielding a new pattern. `pats`
720     /// must have as many elements as this constructor's arity.
721     ///
722     /// Examples:
723     /// self: Single
724     /// ty: tuple of 3 elements
725     /// pats: [10, 20, _]           => (10, 20, _)
726     ///
727     /// self: Option::Some
728     /// ty: Option<bool>
729     /// pats: [false]  => Some(false)
730     fn apply<'a>(
731         &self,
732         cx: &MatchCheckCtxt<'a, 'tcx>,
733         ty: Ty<'tcx>,
734         pats: impl IntoIterator<Item = Pat<'tcx>>,
735     ) -> Pat<'tcx> {
736         let mut pats = pats.into_iter();
737         let pat = match ty.kind {
738             ty::Adt(..) | ty::Tuple(..) => {
739                 let pats = pats
740                     .enumerate()
741                     .map(|(i, p)| FieldPat { field: Field::new(i), pattern: p })
742                     .collect();
743
744                 if let ty::Adt(adt, substs) = ty.kind {
745                     if adt.is_enum() {
746                         PatKind::Variant {
747                             adt_def: adt,
748                             substs,
749                             variant_index: self.variant_index_for_adt(cx, adt),
750                             subpatterns: pats,
751                         }
752                     } else {
753                         PatKind::Leaf { subpatterns: pats }
754                     }
755                 } else {
756                     PatKind::Leaf { subpatterns: pats }
757                 }
758             }
759
760             ty::Ref(..) => PatKind::Deref { subpattern: pats.nth(0).unwrap() },
761
762             ty::Slice(_) | ty::Array(..) => {
763                 PatKind::Slice { prefix: pats.collect(), slice: None, suffix: vec![] }
764             }
765
766             _ => match *self {
767                 ConstantValue(value, _) => PatKind::Constant { value },
768                 ConstantRange(lo, hi, ty, end, _) => PatKind::Range(PatRange {
769                     lo: ty::Const::from_bits(cx.tcx, lo, ty::ParamEnv::empty().and(ty)),
770                     hi: ty::Const::from_bits(cx.tcx, hi, ty::ParamEnv::empty().and(ty)),
771                     end,
772                 }),
773                 _ => PatKind::Wild,
774             },
775         };
776
777         Pat { ty, span: DUMMY_SP, kind: Box::new(pat) }
778     }
779
780     /// Like `apply`, but where all the subpatterns are wildcards `_`.
781     fn apply_wildcards<'a>(&self, cx: &MatchCheckCtxt<'a, 'tcx>, ty: Ty<'tcx>) -> Pat<'tcx> {
782         let pats = self.wildcard_subpatterns(cx, ty).rev();
783         self.apply(cx, ty, pats)
784     }
785 }
786
787 #[derive(Clone, Debug)]
788 pub enum Usefulness<'tcx> {
789     Useful,
790     UsefulWithWitness(Vec<Witness<'tcx>>),
791     NotUseful,
792 }
793
794 impl<'tcx> Usefulness<'tcx> {
795     fn new_useful(preference: WitnessPreference) -> Self {
796         match preference {
797             ConstructWitness => UsefulWithWitness(vec![Witness(vec![])]),
798             LeaveOutWitness => Useful,
799         }
800     }
801
802     fn is_useful(&self) -> bool {
803         match *self {
804             NotUseful => false,
805             _ => true,
806         }
807     }
808
809     fn apply_constructor(
810         self,
811         cx: &MatchCheckCtxt<'_, 'tcx>,
812         ctor: &Constructor<'tcx>,
813         ty: Ty<'tcx>,
814     ) -> Self {
815         match self {
816             UsefulWithWitness(witnesses) => UsefulWithWitness(
817                 witnesses
818                     .into_iter()
819                     .map(|witness| witness.apply_constructor(cx, &ctor, ty))
820                     .collect(),
821             ),
822             x => x,
823         }
824     }
825
826     fn apply_wildcard(self, ty: Ty<'tcx>) -> Self {
827         match self {
828             UsefulWithWitness(witnesses) => {
829                 let wild = Pat { ty, span: DUMMY_SP, kind: box PatKind::Wild };
830                 UsefulWithWitness(
831                     witnesses
832                         .into_iter()
833                         .map(|mut witness| {
834                             witness.0.push(wild.clone());
835                             witness
836                         })
837                         .collect(),
838                 )
839             }
840             x => x,
841         }
842     }
843
844     fn apply_missing_ctors(
845         self,
846         cx: &MatchCheckCtxt<'_, 'tcx>,
847         ty: Ty<'tcx>,
848         missing_ctors: &MissingConstructors<'tcx>,
849     ) -> Self {
850         match self {
851             UsefulWithWitness(witnesses) => {
852                 let new_patterns: Vec<_> =
853                     missing_ctors.iter().map(|ctor| ctor.apply_wildcards(cx, ty)).collect();
854                 // Add the new patterns to each witness
855                 UsefulWithWitness(
856                     witnesses
857                         .into_iter()
858                         .flat_map(|witness| {
859                             new_patterns.iter().map(move |pat| {
860                                 let mut witness = witness.clone();
861                                 witness.0.push(pat.clone());
862                                 witness
863                             })
864                         })
865                         .collect(),
866                 )
867             }
868             x => x,
869         }
870     }
871 }
872
873 #[derive(Copy, Clone, Debug)]
874 pub enum WitnessPreference {
875     ConstructWitness,
876     LeaveOutWitness,
877 }
878
879 #[derive(Copy, Clone, Debug)]
880 struct PatCtxt<'tcx> {
881     ty: Ty<'tcx>,
882     max_slice_length: u64,
883     span: Span,
884 }
885
886 /// A witness of non-exhaustiveness for error reporting, represented
887 /// as a list of patterns (in reverse order of construction) with
888 /// wildcards inside to represent elements that can take any inhabitant
889 /// of the type as a value.
890 ///
891 /// A witness against a list of patterns should have the same types
892 /// and length as the pattern matched against. Because Rust `match`
893 /// is always against a single pattern, at the end the witness will
894 /// have length 1, but in the middle of the algorithm, it can contain
895 /// multiple patterns.
896 ///
897 /// For example, if we are constructing a witness for the match against
898 /// ```
899 /// struct Pair(Option<(u32, u32)>, bool);
900 ///
901 /// match (p: Pair) {
902 ///    Pair(None, _) => {}
903 ///    Pair(_, false) => {}
904 /// }
905 /// ```
906 ///
907 /// We'll perform the following steps:
908 /// 1. Start with an empty witness
909 ///     `Witness(vec![])`
910 /// 2. Push a witness `Some(_)` against the `None`
911 ///     `Witness(vec![Some(_)])`
912 /// 3. Push a witness `true` against the `false`
913 ///     `Witness(vec![Some(_), true])`
914 /// 4. Apply the `Pair` constructor to the witnesses
915 ///     `Witness(vec![Pair(Some(_), true)])`
916 ///
917 /// The final `Pair(Some(_), true)` is then the resulting witness.
918 #[derive(Clone, Debug)]
919 pub struct Witness<'tcx>(Vec<Pat<'tcx>>);
920
921 impl<'tcx> Witness<'tcx> {
922     pub fn single_pattern(self) -> Pat<'tcx> {
923         assert_eq!(self.0.len(), 1);
924         self.0.into_iter().next().unwrap()
925     }
926
927     /// Constructs a partial witness for a pattern given a list of
928     /// patterns expanded by the specialization step.
929     ///
930     /// When a pattern P is discovered to be useful, this function is used bottom-up
931     /// to reconstruct a complete witness, e.g., a pattern P' that covers a subset
932     /// of values, V, where each value in that set is not covered by any previously
933     /// used patterns and is covered by the pattern P'. Examples:
934     ///
935     /// left_ty: tuple of 3 elements
936     /// pats: [10, 20, _]           => (10, 20, _)
937     ///
938     /// left_ty: struct X { a: (bool, &'static str), b: usize}
939     /// pats: [(false, "foo"), 42]  => X { a: (false, "foo"), b: 42 }
940     fn apply_constructor<'a>(
941         mut self,
942         cx: &MatchCheckCtxt<'a, 'tcx>,
943         ctor: &Constructor<'tcx>,
944         ty: Ty<'tcx>,
945     ) -> Self {
946         let arity = ctor.arity(cx, ty);
947         let pat = {
948             let len = self.0.len() as u64;
949             let pats = self.0.drain((len - arity) as usize..).rev();
950             ctor.apply(cx, ty, pats)
951         };
952
953         self.0.push(pat);
954
955         self
956     }
957 }
958
959 /// This determines the set of all possible constructors of a pattern matching
960 /// values of type `left_ty`. For vectors, this would normally be an infinite set
961 /// but is instead bounded by the maximum fixed length of slice patterns in
962 /// the column of patterns being analyzed.
963 ///
964 /// We make sure to omit constructors that are statically impossible. E.g., for
965 /// `Option<!>`, we do not include `Some(_)` in the returned list of constructors.
966 fn all_constructors<'a, 'tcx>(
967     cx: &mut MatchCheckCtxt<'a, 'tcx>,
968     pcx: PatCtxt<'tcx>,
969 ) -> Vec<Constructor<'tcx>> {
970     debug!("all_constructors({:?})", pcx.ty);
971     let ctors = match pcx.ty.kind {
972         ty::Bool => [true, false]
973             .iter()
974             .map(|&b| ConstantValue(ty::Const::from_bool(cx.tcx, b), pcx.span))
975             .collect(),
976         ty::Array(ref sub_ty, len) if len.try_eval_usize(cx.tcx, cx.param_env).is_some() => {
977             let len = len.eval_usize(cx.tcx, cx.param_env);
978             if len != 0 && cx.is_uninhabited(sub_ty) { vec![] } else { vec![Slice(len)] }
979         }
980         // Treat arrays of a constant but unknown length like slices.
981         ty::Array(ref sub_ty, _) | ty::Slice(ref sub_ty) => {
982             if cx.is_uninhabited(sub_ty) {
983                 vec![Slice(0)]
984             } else {
985                 (0..pcx.max_slice_length + 1).map(|length| Slice(length)).collect()
986             }
987         }
988         ty::Adt(def, substs) if def.is_enum() => def
989             .variants
990             .iter()
991             .filter(|v| {
992                 !cx.tcx.features().exhaustive_patterns
993                     || !v
994                         .uninhabited_from(cx.tcx, substs, def.adt_kind())
995                         .contains(cx.tcx, cx.module)
996             })
997             .map(|v| Variant(v.def_id))
998             .collect(),
999         ty::Char => {
1000             vec![
1001                 // The valid Unicode Scalar Value ranges.
1002                 ConstantRange(
1003                     '\u{0000}' as u128,
1004                     '\u{D7FF}' as u128,
1005                     cx.tcx.types.char,
1006                     RangeEnd::Included,
1007                     pcx.span,
1008                 ),
1009                 ConstantRange(
1010                     '\u{E000}' as u128,
1011                     '\u{10FFFF}' as u128,
1012                     cx.tcx.types.char,
1013                     RangeEnd::Included,
1014                     pcx.span,
1015                 ),
1016             ]
1017         }
1018         ty::Int(ity) => {
1019             let bits = Integer::from_attr(&cx.tcx, SignedInt(ity)).size().bits() as u128;
1020             let min = 1u128 << (bits - 1);
1021             let max = min - 1;
1022             vec![ConstantRange(min, max, pcx.ty, RangeEnd::Included, pcx.span)]
1023         }
1024         ty::Uint(uty) => {
1025             let size = Integer::from_attr(&cx.tcx, UnsignedInt(uty)).size();
1026             let max = truncate(u128::max_value(), size);
1027             vec![ConstantRange(0, max, pcx.ty, RangeEnd::Included, pcx.span)]
1028         }
1029         _ => {
1030             if cx.is_uninhabited(pcx.ty) {
1031                 vec![]
1032             } else {
1033                 vec![Single]
1034             }
1035         }
1036     };
1037     ctors
1038 }
1039
1040 fn max_slice_length<'p, 'a, 'tcx, I>(cx: &mut MatchCheckCtxt<'a, 'tcx>, patterns: I) -> u64
1041 where
1042     I: Iterator<Item = &'p Pat<'tcx>>,
1043     'tcx: 'p,
1044 {
1045     // The exhaustiveness-checking paper does not include any details on
1046     // checking variable-length slice patterns. However, they are matched
1047     // by an infinite collection of fixed-length array patterns.
1048     //
1049     // Checking the infinite set directly would take an infinite amount
1050     // of time. However, it turns out that for each finite set of
1051     // patterns `P`, all sufficiently large array lengths are equivalent:
1052     //
1053     // Each slice `s` with a "sufficiently-large" length `l ≥ L` that applies
1054     // to exactly the subset `Pₜ` of `P` can be transformed to a slice
1055     // `sₘ` for each sufficiently-large length `m` that applies to exactly
1056     // the same subset of `P`.
1057     //
1058     // Because of that, each witness for reachability-checking from one
1059     // of the sufficiently-large lengths can be transformed to an
1060     // equally-valid witness from any other length, so we only have
1061     // to check slice lengths from the "minimal sufficiently-large length"
1062     // and below.
1063     //
1064     // Note that the fact that there is a *single* `sₘ` for each `m`
1065     // not depending on the specific pattern in `P` is important: if
1066     // you look at the pair of patterns
1067     //     `[true, ..]`
1068     //     `[.., false]`
1069     // Then any slice of length ≥1 that matches one of these two
1070     // patterns can be trivially turned to a slice of any
1071     // other length ≥1 that matches them and vice-versa - for
1072     // but the slice from length 2 `[false, true]` that matches neither
1073     // of these patterns can't be turned to a slice from length 1 that
1074     // matches neither of these patterns, so we have to consider
1075     // slices from length 2 there.
1076     //
1077     // Now, to see that that length exists and find it, observe that slice
1078     // patterns are either "fixed-length" patterns (`[_, _, _]`) or
1079     // "variable-length" patterns (`[_, .., _]`).
1080     //
1081     // For fixed-length patterns, all slices with lengths *longer* than
1082     // the pattern's length have the same outcome (of not matching), so
1083     // as long as `L` is greater than the pattern's length we can pick
1084     // any `sₘ` from that length and get the same result.
1085     //
1086     // For variable-length patterns, the situation is more complicated,
1087     // because as seen above the precise value of `sₘ` matters.
1088     //
1089     // However, for each variable-length pattern `p` with a prefix of length
1090     // `plₚ` and suffix of length `slₚ`, only the first `plₚ` and the last
1091     // `slₚ` elements are examined.
1092     //
1093     // Therefore, as long as `L` is positive (to avoid concerns about empty
1094     // types), all elements after the maximum prefix length and before
1095     // the maximum suffix length are not examined by any variable-length
1096     // pattern, and therefore can be added/removed without affecting
1097     // them - creating equivalent patterns from any sufficiently-large
1098     // length.
1099     //
1100     // Of course, if fixed-length patterns exist, we must be sure
1101     // that our length is large enough to miss them all, so
1102     // we can pick `L = max(FIXED_LEN+1 ∪ {max(PREFIX_LEN) + max(SUFFIX_LEN)})`
1103     //
1104     // for example, with the above pair of patterns, all elements
1105     // but the first and last can be added/removed, so any
1106     // witness of length ≥2 (say, `[false, false, true]`) can be
1107     // turned to a witness from any other length ≥2.
1108
1109     let mut max_prefix_len = 0;
1110     let mut max_suffix_len = 0;
1111     let mut max_fixed_len = 0;
1112
1113     for row in patterns {
1114         match *row.kind {
1115             PatKind::Constant { value } => {
1116                 // extract the length of an array/slice from a constant
1117                 match (value.val, &value.ty.kind) {
1118                     (_, ty::Array(_, n)) => {
1119                         max_fixed_len = cmp::max(max_fixed_len, n.eval_usize(cx.tcx, cx.param_env))
1120                     }
1121                     (ConstValue::Slice { start, end, .. }, ty::Slice(_)) => {
1122                         max_fixed_len = cmp::max(max_fixed_len, (end - start) as u64)
1123                     }
1124                     _ => {}
1125                 }
1126             }
1127             PatKind::Slice { ref prefix, slice: None, ref suffix } => {
1128                 let fixed_len = prefix.len() as u64 + suffix.len() as u64;
1129                 max_fixed_len = cmp::max(max_fixed_len, fixed_len);
1130             }
1131             PatKind::Slice { ref prefix, slice: Some(_), ref suffix } => {
1132                 max_prefix_len = cmp::max(max_prefix_len, prefix.len() as u64);
1133                 max_suffix_len = cmp::max(max_suffix_len, suffix.len() as u64);
1134             }
1135             _ => {}
1136         }
1137     }
1138
1139     cmp::max(max_fixed_len + 1, max_prefix_len + max_suffix_len)
1140 }
1141
1142 /// An inclusive interval, used for precise integer exhaustiveness checking.
1143 /// `IntRange`s always store a contiguous range. This means that values are
1144 /// encoded such that `0` encodes the minimum value for the integer,
1145 /// regardless of the signedness.
1146 /// For example, the pattern `-128..=127i8` is encoded as `0..=255`.
1147 /// This makes comparisons and arithmetic on interval endpoints much more
1148 /// straightforward. See `signed_bias` for details.
1149 ///
1150 /// `IntRange` is never used to encode an empty range or a "range" that wraps
1151 /// around the (offset) space: i.e., `range.lo <= range.hi`.
1152 #[derive(Clone, Debug)]
1153 struct IntRange<'tcx> {
1154     pub range: RangeInclusive<u128>,
1155     pub ty: Ty<'tcx>,
1156     pub span: Span,
1157 }
1158
1159 impl<'tcx> IntRange<'tcx> {
1160     #[inline]
1161     fn is_integral(ty: Ty<'_>) -> bool {
1162         match ty.kind {
1163             ty::Char | ty::Int(_) | ty::Uint(_) => true,
1164             _ => false,
1165         }
1166     }
1167
1168     #[inline]
1169     fn integral_size_and_signed_bias(tcx: TyCtxt<'tcx>, ty: Ty<'_>) -> Option<(Size, u128)> {
1170         match ty.kind {
1171             ty::Char => Some((Size::from_bytes(4), 0)),
1172             ty::Int(ity) => {
1173                 let size = Integer::from_attr(&tcx, SignedInt(ity)).size();
1174                 Some((size, 1u128 << (size.bits() as u128 - 1)))
1175             }
1176             ty::Uint(uty) => Some((Integer::from_attr(&tcx, UnsignedInt(uty)).size(), 0)),
1177             _ => None,
1178         }
1179     }
1180
1181     #[inline]
1182     fn from_const(
1183         tcx: TyCtxt<'tcx>,
1184         param_env: ty::ParamEnv<'tcx>,
1185         value: &Const<'tcx>,
1186         span: Span,
1187     ) -> Option<IntRange<'tcx>> {
1188         if let Some((target_size, bias)) = Self::integral_size_and_signed_bias(tcx, value.ty) {
1189             let ty = value.ty;
1190             let val = if let ConstValue::Scalar(Scalar::Raw { data, size }) = value.val {
1191                 // For this specific pattern we can skip a lot of effort and go
1192                 // straight to the result, after doing a bit of checking. (We
1193                 // could remove this branch and just use the next branch, which
1194                 // is more general but much slower.)
1195                 Scalar::<()>::check_raw(data, size, target_size);
1196                 data
1197             } else if let Some(val) = value.try_eval_bits(tcx, param_env, ty) {
1198                 // This is a more general form of the previous branch.
1199                 val
1200             } else {
1201                 return None;
1202             };
1203             let val = val ^ bias;
1204             Some(IntRange { range: val..=val, ty, span })
1205         } else {
1206             None
1207         }
1208     }
1209
1210     #[inline]
1211     fn from_range(
1212         tcx: TyCtxt<'tcx>,
1213         lo: u128,
1214         hi: u128,
1215         ty: Ty<'tcx>,
1216         end: &RangeEnd,
1217         span: Span,
1218     ) -> Option<IntRange<'tcx>> {
1219         if Self::is_integral(ty) {
1220             // Perform a shift if the underlying types are signed,
1221             // which makes the interval arithmetic simpler.
1222             let bias = IntRange::signed_bias(tcx, ty);
1223             let (lo, hi) = (lo ^ bias, hi ^ bias);
1224             // Make sure the interval is well-formed.
1225             if lo > hi || lo == hi && *end == RangeEnd::Excluded {
1226                 None
1227             } else {
1228                 let offset = (*end == RangeEnd::Excluded) as u128;
1229                 Some(IntRange { range: lo..=(hi - offset), ty, span })
1230             }
1231         } else {
1232             None
1233         }
1234     }
1235
1236     fn from_ctor(
1237         tcx: TyCtxt<'tcx>,
1238         param_env: ty::ParamEnv<'tcx>,
1239         ctor: &Constructor<'tcx>,
1240     ) -> Option<IntRange<'tcx>> {
1241         // Floating-point ranges are permitted and we don't want
1242         // to consider them when constructing integer ranges.
1243         match ctor {
1244             ConstantRange(lo, hi, ty, end, span) => Self::from_range(tcx, *lo, *hi, ty, end, *span),
1245             ConstantValue(val, span) => Self::from_const(tcx, param_env, val, *span),
1246             _ => None,
1247         }
1248     }
1249
1250     fn from_pat(
1251         tcx: TyCtxt<'tcx>,
1252         param_env: ty::ParamEnv<'tcx>,
1253         mut pat: &Pat<'tcx>,
1254     ) -> Option<IntRange<'tcx>> {
1255         loop {
1256             match pat.kind {
1257                 box PatKind::Constant { value } => {
1258                     return Self::from_const(tcx, param_env, value, pat.span);
1259                 }
1260                 box PatKind::Range(PatRange { lo, hi, end }) => {
1261                     return Self::from_range(
1262                         tcx,
1263                         lo.eval_bits(tcx, param_env, lo.ty),
1264                         hi.eval_bits(tcx, param_env, hi.ty),
1265                         &lo.ty,
1266                         &end,
1267                         pat.span,
1268                     );
1269                 }
1270                 box PatKind::AscribeUserType { ref subpattern, .. } => {
1271                     pat = subpattern;
1272                 }
1273                 _ => return None,
1274             }
1275         }
1276     }
1277
1278     // The return value of `signed_bias` should be XORed with an endpoint to encode/decode it.
1279     fn signed_bias(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>) -> u128 {
1280         match ty.kind {
1281             ty::Int(ity) => {
1282                 let bits = Integer::from_attr(&tcx, SignedInt(ity)).size().bits() as u128;
1283                 1u128 << (bits - 1)
1284             }
1285             _ => 0,
1286         }
1287     }
1288
1289     /// Converts a `RangeInclusive` to a `ConstantValue` or inclusive `ConstantRange`.
1290     fn range_to_ctor(
1291         tcx: TyCtxt<'tcx>,
1292         ty: Ty<'tcx>,
1293         r: RangeInclusive<u128>,
1294         span: Span,
1295     ) -> Constructor<'tcx> {
1296         let bias = IntRange::signed_bias(tcx, ty);
1297         let (lo, hi) = r.into_inner();
1298         if lo == hi {
1299             let ty = ty::ParamEnv::empty().and(ty);
1300             ConstantValue(ty::Const::from_bits(tcx, lo ^ bias, ty), span)
1301         } else {
1302             ConstantRange(lo ^ bias, hi ^ bias, ty, RangeEnd::Included, span)
1303         }
1304     }
1305
1306     /// Returns a collection of ranges that spans the values covered by `ranges`, subtracted
1307     /// by the values covered by `self`: i.e., `ranges \ self` (in set notation).
1308     fn subtract_from(
1309         self,
1310         tcx: TyCtxt<'tcx>,
1311         param_env: ty::ParamEnv<'tcx>,
1312         ranges: Vec<Constructor<'tcx>>,
1313     ) -> Vec<Constructor<'tcx>> {
1314         let ranges = ranges
1315             .into_iter()
1316             .filter_map(|r| IntRange::from_ctor(tcx, param_env, &r).map(|i| i.range));
1317         let mut remaining_ranges = vec![];
1318         let ty = self.ty;
1319         let (lo, hi) = self.range.into_inner();
1320         for subrange in ranges {
1321             let (subrange_lo, subrange_hi) = subrange.into_inner();
1322             if lo > subrange_hi || subrange_lo > hi {
1323                 // The pattern doesn't intersect with the subrange at all,
1324                 // so the subrange remains untouched.
1325                 remaining_ranges.push(Self::range_to_ctor(
1326                     tcx,
1327                     ty,
1328                     subrange_lo..=subrange_hi,
1329                     self.span,
1330                 ));
1331             } else {
1332                 if lo > subrange_lo {
1333                     // The pattern intersects an upper section of the
1334                     // subrange, so a lower section will remain.
1335                     remaining_ranges.push(Self::range_to_ctor(
1336                         tcx,
1337                         ty,
1338                         subrange_lo..=(lo - 1),
1339                         self.span,
1340                     ));
1341                 }
1342                 if hi < subrange_hi {
1343                     // The pattern intersects a lower section of the
1344                     // subrange, so an upper section will remain.
1345                     remaining_ranges.push(Self::range_to_ctor(
1346                         tcx,
1347                         ty,
1348                         (hi + 1)..=subrange_hi,
1349                         self.span,
1350                     ));
1351                 }
1352             }
1353         }
1354         remaining_ranges
1355     }
1356
1357     fn intersection(&self, other: &Self) -> Option<Self> {
1358         let ty = self.ty;
1359         let (lo, hi) = (*self.range.start(), *self.range.end());
1360         let (other_lo, other_hi) = (*other.range.start(), *other.range.end());
1361         if lo <= other_hi && other_lo <= hi {
1362             let span = other.span;
1363             Some(IntRange { range: max(lo, other_lo)..=min(hi, other_hi), ty, span })
1364         } else {
1365             None
1366         }
1367     }
1368
1369     fn suspicious_intersection(&self, other: &Self) -> bool {
1370         // `false` in the following cases:
1371         // 1     ----      // 1  ----------   // 1 ----        // 1       ----
1372         // 2  ----------   // 2     ----      // 2       ----  // 2 ----
1373         //
1374         // The following are currently `false`, but could be `true` in the future (#64007):
1375         // 1 ---------       // 1     ---------
1376         // 2     ----------  // 2 ----------
1377         //
1378         // `true` in the following cases:
1379         // 1 -------          // 1       -------
1380         // 2       --------   // 2 -------
1381         let (lo, hi) = (*self.range.start(), *self.range.end());
1382         let (other_lo, other_hi) = (*other.range.start(), *other.range.end());
1383         (lo == other_hi || hi == other_lo)
1384     }
1385 }
1386
1387 // A struct to compute a set of constructors equivalent to `all_ctors \ used_ctors`.
1388 struct MissingConstructors<'tcx> {
1389     tcx: TyCtxt<'tcx>,
1390     param_env: ty::ParamEnv<'tcx>,
1391     all_ctors: Vec<Constructor<'tcx>>,
1392     used_ctors: Vec<Constructor<'tcx>>,
1393 }
1394
1395 impl<'tcx> MissingConstructors<'tcx> {
1396     fn new(
1397         tcx: TyCtxt<'tcx>,
1398         param_env: ty::ParamEnv<'tcx>,
1399         all_ctors: Vec<Constructor<'tcx>>,
1400         used_ctors: Vec<Constructor<'tcx>>,
1401     ) -> Self {
1402         MissingConstructors { tcx, param_env, all_ctors, used_ctors }
1403     }
1404
1405     fn into_inner(self) -> (Vec<Constructor<'tcx>>, Vec<Constructor<'tcx>>) {
1406         (self.all_ctors, self.used_ctors)
1407     }
1408
1409     fn is_empty(&self) -> bool {
1410         self.iter().next().is_none()
1411     }
1412     /// Whether this contains all the constructors for the given type or only a
1413     /// subset.
1414     fn all_ctors_are_missing(&self) -> bool {
1415         self.used_ctors.is_empty()
1416     }
1417
1418     /// Iterate over all_ctors \ used_ctors
1419     fn iter<'a>(&'a self) -> impl Iterator<Item = Constructor<'tcx>> + Captures<'a> {
1420         self.all_ctors.iter().flat_map(move |req_ctor| {
1421             req_ctor.subtract_ctors(self.tcx, self.param_env, &self.used_ctors)
1422         })
1423     }
1424 }
1425
1426 impl<'tcx> fmt::Debug for MissingConstructors<'tcx> {
1427     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1428         let ctors: Vec<_> = self.iter().collect();
1429         write!(f, "{:?}", ctors)
1430     }
1431 }
1432
1433 /// Algorithm from http://moscova.inria.fr/~maranget/papers/warn/index.html.
1434 /// The algorithm from the paper has been modified to correctly handle empty
1435 /// types. The changes are:
1436 ///   (0) We don't exit early if the pattern matrix has zero rows. We just
1437 ///       continue to recurse over columns.
1438 ///   (1) all_constructors will only return constructors that are statically
1439 ///       possible. E.g., it will only return `Ok` for `Result<T, !>`.
1440 ///
1441 /// This finds whether a (row) vector `v` of patterns is 'useful' in relation
1442 /// to a set of such vectors `m` - this is defined as there being a set of
1443 /// inputs that will match `v` but not any of the sets in `m`.
1444 ///
1445 /// All the patterns at each column of the `matrix ++ v` matrix must
1446 /// have the same type, except that wildcard (PatKind::Wild) patterns
1447 /// with type `TyErr` are also allowed, even if the "type of the column"
1448 /// is not `TyErr`. That is used to represent private fields, as using their
1449 /// real type would assert that they are inhabited.
1450 ///
1451 /// This is used both for reachability checking (if a pattern isn't useful in
1452 /// relation to preceding patterns, it is not reachable) and exhaustiveness
1453 /// checking (if a wildcard pattern is useful in relation to a matrix, the
1454 /// matrix isn't exhaustive).
1455 pub fn is_useful<'p, 'a, 'tcx>(
1456     cx: &mut MatchCheckCtxt<'a, 'tcx>,
1457     matrix: &Matrix<'p, 'tcx>,
1458     v: &PatStack<'_, 'tcx>,
1459     witness_preference: WitnessPreference,
1460     hir_id: HirId,
1461 ) -> Usefulness<'tcx> {
1462     let &Matrix(ref rows) = matrix;
1463     debug!("is_useful({:#?}, {:#?})", matrix, v);
1464
1465     // The base case. We are pattern-matching on () and the return value is
1466     // based on whether our matrix has a row or not.
1467     // NOTE: This could potentially be optimized by checking rows.is_empty()
1468     // first and then, if v is non-empty, the return value is based on whether
1469     // the type of the tuple we're checking is inhabited or not.
1470     if v.is_empty() {
1471         return if rows.is_empty() {
1472             Usefulness::new_useful(witness_preference)
1473         } else {
1474             NotUseful
1475         };
1476     };
1477
1478     assert!(rows.iter().all(|r| r.len() == v.len()));
1479
1480     let (ty, span) = matrix
1481         .heads()
1482         .map(|r| (r.ty, r.span))
1483         .find(|(ty, _)| !ty.references_error())
1484         .unwrap_or((v.head().ty, v.head().span));
1485     let pcx = PatCtxt {
1486         // TyErr is used to represent the type of wildcard patterns matching
1487         // against inaccessible (private) fields of structs, so that we won't
1488         // be able to observe whether the types of the struct's fields are
1489         // inhabited.
1490         //
1491         // If the field is truly inaccessible, then all the patterns
1492         // matching against it must be wildcard patterns, so its type
1493         // does not matter.
1494         //
1495         // However, if we are matching against non-wildcard patterns, we
1496         // need to know the real type of the field so we can specialize
1497         // against it. This primarily occurs through constants - they
1498         // can include contents for fields that are inaccessible at the
1499         // location of the match. In that case, the field's type is
1500         // inhabited - by the constant - so we can just use it.
1501         //
1502         // FIXME: this might lead to "unstable" behavior with macro hygiene
1503         // introducing uninhabited patterns for inaccessible fields. We
1504         // need to figure out how to model that.
1505         ty,
1506         max_slice_length: max_slice_length(cx, matrix.heads().chain(Some(v.head()))),
1507         span,
1508     };
1509
1510     debug!("is_useful_expand_first_col: pcx={:#?}, expanding {:#?}", pcx, v.head());
1511
1512     if let Some(constructors) = pat_constructors(cx, v.head(), pcx) {
1513         debug!("is_useful - expanding constructors: {:#?}", constructors);
1514         split_grouped_constructors(
1515             cx.tcx,
1516             cx.param_env,
1517             constructors,
1518             matrix,
1519             pcx.ty,
1520             pcx.span,
1521             Some(hir_id),
1522         )
1523         .into_iter()
1524         .map(|c| is_useful_specialized(cx, matrix, v, c, pcx.ty, witness_preference, hir_id))
1525         .find(|result| result.is_useful())
1526         .unwrap_or(NotUseful)
1527     } else {
1528         debug!("is_useful - expanding wildcard");
1529
1530         let used_ctors: Vec<Constructor<'_>> =
1531             matrix.heads().flat_map(|p| pat_constructors(cx, p, pcx).unwrap_or(vec![])).collect();
1532         debug!("used_ctors = {:#?}", used_ctors);
1533         // `all_ctors` are all the constructors for the given type, which
1534         // should all be represented (or caught with the wild pattern `_`).
1535         let all_ctors = all_constructors(cx, pcx);
1536         debug!("all_ctors = {:#?}", all_ctors);
1537
1538         let is_privately_empty = all_ctors.is_empty() && !cx.is_uninhabited(pcx.ty);
1539         let is_declared_nonexhaustive = cx.is_non_exhaustive_enum(pcx.ty) && !cx.is_local(pcx.ty);
1540
1541         // `missing_ctors` is the set of constructors from the same type as the
1542         // first column of `matrix` that are matched only by wildcard patterns
1543         // from the first column.
1544         //
1545         // Therefore, if there is some pattern that is unmatched by `matrix`,
1546         // it will still be unmatched if the first constructor is replaced by
1547         // any of the constructors in `missing_ctors`
1548         //
1549         // However, if our scrutinee is *privately* an empty enum, we
1550         // must treat it as though it had an "unknown" constructor (in
1551         // that case, all other patterns obviously can't be variants)
1552         // to avoid exposing its emptyness. See the `match_privately_empty`
1553         // test for details.
1554         //
1555         // FIXME: currently the only way I know of something can
1556         // be a privately-empty enum is when the exhaustive_patterns
1557         // feature flag is not present, so this is only
1558         // needed for that case.
1559
1560         // Missing constructors are those that are not matched by any
1561         // non-wildcard patterns in the current column. To determine if
1562         // the set is empty, we can check that `.peek().is_none()`, so
1563         // we only fully construct them on-demand, because they're rarely used and can be big.
1564         let missing_ctors = MissingConstructors::new(cx.tcx, cx.param_env, all_ctors, used_ctors);
1565
1566         debug!(
1567             "missing_ctors.empty()={:#?} is_privately_empty={:#?} is_declared_nonexhaustive={:#?}",
1568             missing_ctors.is_empty(),
1569             is_privately_empty,
1570             is_declared_nonexhaustive
1571         );
1572
1573         // For privately empty and non-exhaustive enums, we work as if there were an "extra"
1574         // `_` constructor for the type, so we can never match over all constructors.
1575         let is_non_exhaustive = is_privately_empty
1576             || is_declared_nonexhaustive
1577             || (pcx.ty.is_ptr_sized_integral() && !cx.tcx.features().precise_pointer_size_matching);
1578
1579         if missing_ctors.is_empty() && !is_non_exhaustive {
1580             let (all_ctors, _) = missing_ctors.into_inner();
1581             split_grouped_constructors(
1582                 cx.tcx,
1583                 cx.param_env,
1584                 all_ctors,
1585                 matrix,
1586                 pcx.ty,
1587                 DUMMY_SP,
1588                 None,
1589             )
1590             .into_iter()
1591             .map(|c| is_useful_specialized(cx, matrix, v, c, pcx.ty, witness_preference, hir_id))
1592             .find(|result| result.is_useful())
1593             .unwrap_or(NotUseful)
1594         } else {
1595             let matrix = matrix.specialize_wildcard();
1596             let v = v.to_tail();
1597             let usefulness = is_useful(cx, &matrix, &v, witness_preference, hir_id);
1598
1599             // In this case, there's at least one "free"
1600             // constructor that is only matched against by
1601             // wildcard patterns.
1602             //
1603             // There are 2 ways we can report a witness here.
1604             // Commonly, we can report all the "free"
1605             // constructors as witnesses, e.g., if we have:
1606             //
1607             // ```
1608             //     enum Direction { N, S, E, W }
1609             //     let Direction::N = ...;
1610             // ```
1611             //
1612             // we can report 3 witnesses: `S`, `E`, and `W`.
1613             //
1614             // However, there are 2 cases where we don't want
1615             // to do this and instead report a single `_` witness:
1616             //
1617             // 1) If the user is matching against a non-exhaustive
1618             // enum, there is no point in enumerating all possible
1619             // variants, because the user can't actually match
1620             // against them themselves, e.g., in an example like:
1621             // ```
1622             //     let err: io::ErrorKind = ...;
1623             //     match err {
1624             //         io::ErrorKind::NotFound => {},
1625             //     }
1626             // ```
1627             // we don't want to show every possible IO error,
1628             // but instead have `_` as the witness (this is
1629             // actually *required* if the user specified *all*
1630             // IO errors, but is probably what we want in every
1631             // case).
1632             //
1633             // 2) If the user didn't actually specify a constructor
1634             // in this arm, e.g., in
1635             // ```
1636             //     let x: (Direction, Direction, bool) = ...;
1637             //     let (_, _, false) = x;
1638             // ```
1639             // we don't want to show all 16 possible witnesses
1640             // `(<direction-1>, <direction-2>, true)` - we are
1641             // satisfied with `(_, _, true)`. In this case,
1642             // `used_ctors` is empty.
1643             if is_non_exhaustive || missing_ctors.all_ctors_are_missing() {
1644                 // All constructors are unused. Add a wild pattern
1645                 // rather than each individual constructor.
1646                 usefulness.apply_wildcard(pcx.ty)
1647             } else {
1648                 // Construct for each missing constructor a "wild" version of this
1649                 // constructor, that matches everything that can be built with
1650                 // it. For example, if `ctor` is a `Constructor::Variant` for
1651                 // `Option::Some`, we get the pattern `Some(_)`.
1652                 usefulness.apply_missing_ctors(cx, pcx.ty, &missing_ctors)
1653             }
1654         }
1655     }
1656 }
1657
1658 /// A shorthand for the `U(S(c, P), S(c, q))` operation from the paper. I.e., `is_useful` applied
1659 /// to the specialised version of both the pattern matrix `P` and the new pattern `q`.
1660 fn is_useful_specialized<'p, 'a, 'tcx>(
1661     cx: &mut MatchCheckCtxt<'a, 'tcx>,
1662     matrix: &Matrix<'p, 'tcx>,
1663     v: &PatStack<'_, 'tcx>,
1664     ctor: Constructor<'tcx>,
1665     lty: Ty<'tcx>,
1666     witness_preference: WitnessPreference,
1667     hir_id: HirId,
1668 ) -> Usefulness<'tcx> {
1669     debug!("is_useful_specialized({:#?}, {:#?}, {:?})", v, ctor, lty);
1670
1671     let ctor_wild_subpatterns_owned: Vec<_> = ctor.wildcard_subpatterns(cx, lty).collect();
1672     let ctor_wild_subpatterns: Vec<_> = ctor_wild_subpatterns_owned.iter().collect();
1673     let matrix = matrix.specialize_constructor(cx, &ctor, &ctor_wild_subpatterns);
1674     v.specialize_constructor(cx, &ctor, &ctor_wild_subpatterns)
1675         .map(|v| is_useful(cx, &matrix, &v, witness_preference, hir_id))
1676         .map(|u| u.apply_constructor(cx, &ctor, lty))
1677         .unwrap_or(NotUseful)
1678 }
1679
1680 /// Determines the constructors that the given pattern can be specialized to.
1681 ///
1682 /// In most cases, there's only one constructor that a specific pattern
1683 /// represents, such as a specific enum variant or a specific literal value.
1684 /// Slice patterns, however, can match slices of different lengths. For instance,
1685 /// `[a, b, tail @ ..]` can match a slice of length 2, 3, 4 and so on.
1686 ///
1687 /// Returns `None` in case of a catch-all, which can't be specialized.
1688 fn pat_constructors<'tcx>(
1689     cx: &mut MatchCheckCtxt<'_, 'tcx>,
1690     pat: &Pat<'tcx>,
1691     pcx: PatCtxt<'tcx>,
1692 ) -> Option<Vec<Constructor<'tcx>>> {
1693     match *pat.kind {
1694         PatKind::AscribeUserType { ref subpattern, .. } => pat_constructors(cx, subpattern, pcx),
1695         PatKind::Binding { .. } | PatKind::Wild => None,
1696         PatKind::Leaf { .. } | PatKind::Deref { .. } => Some(vec![Single]),
1697         PatKind::Variant { adt_def, variant_index, .. } => {
1698             Some(vec![Variant(adt_def.variants[variant_index].def_id)])
1699         }
1700         PatKind::Constant { value } => Some(vec![ConstantValue(value, pat.span)]),
1701         PatKind::Range(PatRange { lo, hi, end }) => Some(vec![ConstantRange(
1702             lo.eval_bits(cx.tcx, cx.param_env, lo.ty),
1703             hi.eval_bits(cx.tcx, cx.param_env, hi.ty),
1704             lo.ty,
1705             end,
1706             pat.span,
1707         )]),
1708         PatKind::Array { .. } => match pcx.ty.kind {
1709             ty::Array(_, length) => Some(vec![Slice(length.eval_usize(cx.tcx, cx.param_env))]),
1710             _ => span_bug!(pat.span, "bad ty {:?} for array pattern", pcx.ty),
1711         },
1712         PatKind::Slice { ref prefix, ref slice, ref suffix } => {
1713             let pat_len = prefix.len() as u64 + suffix.len() as u64;
1714             if slice.is_some() {
1715                 Some((pat_len..pcx.max_slice_length + 1).map(Slice).collect())
1716             } else {
1717                 Some(vec![Slice(pat_len)])
1718             }
1719         }
1720         PatKind::Or { .. } => {
1721             bug!("support for or-patterns has not been fully implemented yet.");
1722         }
1723     }
1724 }
1725
1726 /// This computes the types of the sub patterns that a constructor should be
1727 /// expanded to.
1728 ///
1729 /// For instance, a tuple pattern (43u32, 'a') has sub pattern types [u32, char].
1730 fn constructor_sub_pattern_tys<'a, 'tcx>(
1731     cx: &MatchCheckCtxt<'a, 'tcx>,
1732     ctor: &Constructor<'tcx>,
1733     ty: Ty<'tcx>,
1734 ) -> Vec<Ty<'tcx>> {
1735     debug!("constructor_sub_pattern_tys({:#?}, {:?})", ctor, ty);
1736     match ty.kind {
1737         ty::Tuple(ref fs) => fs.into_iter().map(|t| t.expect_ty()).collect(),
1738         ty::Slice(ty) | ty::Array(ty, _) => match *ctor {
1739             Slice(length) => (0..length).map(|_| ty).collect(),
1740             ConstantValue(..) => vec![],
1741             _ => bug!("bad slice pattern {:?} {:?}", ctor, ty),
1742         },
1743         ty::Ref(_, rty, _) => vec![rty],
1744         ty::Adt(adt, substs) => {
1745             if adt.is_box() {
1746                 // Use T as the sub pattern type of Box<T>.
1747                 vec![substs.type_at(0)]
1748             } else {
1749                 let variant = &adt.variants[ctor.variant_index_for_adt(cx, adt)];
1750                 let is_non_exhaustive = variant.is_field_list_non_exhaustive() && !cx.is_local(ty);
1751                 variant
1752                     .fields
1753                     .iter()
1754                     .map(|field| {
1755                         let is_visible =
1756                             adt.is_enum() || field.vis.is_accessible_from(cx.module, cx.tcx);
1757                         let is_uninhabited = cx.is_uninhabited(field.ty(cx.tcx, substs));
1758                         match (is_visible, is_non_exhaustive, is_uninhabited) {
1759                             // Treat all uninhabited types in non-exhaustive variants as `TyErr`.
1760                             (_, true, true) => cx.tcx.types.err,
1761                             // Treat all non-visible fields as `TyErr`. They can't appear in any
1762                             // other pattern from this match (because they are private), so their
1763                             // type does not matter - but we don't want to know they are
1764                             // uninhabited.
1765                             (false, ..) => cx.tcx.types.err,
1766                             (true, ..) => {
1767                                 let ty = field.ty(cx.tcx, substs);
1768                                 match ty.kind {
1769                                     // If the field type returned is an array of an unknown size
1770                                     // return an TyErr.
1771                                     ty::Array(_, len)
1772                                         if len.try_eval_usize(cx.tcx, cx.param_env).is_none() =>
1773                                     {
1774                                         cx.tcx.types.err
1775                                     }
1776                                     _ => ty,
1777                                 }
1778                             }
1779                         }
1780                     })
1781                     .collect()
1782             }
1783         }
1784         _ => vec![],
1785     }
1786 }
1787
1788 // checks whether a constant is equal to a user-written slice pattern. Only supports byte slices,
1789 // meaning all other types will compare unequal and thus equal patterns often do not cause the
1790 // second pattern to lint about unreachable match arms.
1791 fn slice_pat_covered_by_const<'tcx>(
1792     tcx: TyCtxt<'tcx>,
1793     _span: Span,
1794     const_val: &'tcx ty::Const<'tcx>,
1795     prefix: &[Pat<'tcx>],
1796     slice: &Option<Pat<'tcx>>,
1797     suffix: &[Pat<'tcx>],
1798     param_env: ty::ParamEnv<'tcx>,
1799 ) -> Result<bool, ErrorReported> {
1800     let data: &[u8] = match (const_val.val, &const_val.ty.kind) {
1801         (ConstValue::ByRef { offset, alloc, .. }, ty::Array(t, n)) => {
1802             assert_eq!(*t, tcx.types.u8);
1803             let n = n.eval_usize(tcx, param_env);
1804             let ptr = Pointer::new(AllocId(0), offset);
1805             alloc.get_bytes(&tcx, ptr, Size::from_bytes(n)).unwrap()
1806         }
1807         (ConstValue::Slice { data, start, end }, ty::Slice(t)) => {
1808             assert_eq!(*t, tcx.types.u8);
1809             let ptr = Pointer::new(AllocId(0), Size::from_bytes(start as u64));
1810             data.get_bytes(&tcx, ptr, Size::from_bytes((end - start) as u64)).unwrap()
1811         }
1812         // FIXME(oli-obk): create a way to extract fat pointers from ByRef
1813         (_, ty::Slice(_)) => return Ok(false),
1814         _ => bug!(
1815             "slice_pat_covered_by_const: {:#?}, {:#?}, {:#?}, {:#?}",
1816             const_val,
1817             prefix,
1818             slice,
1819             suffix,
1820         ),
1821     };
1822
1823     let pat_len = prefix.len() + suffix.len();
1824     if data.len() < pat_len || (slice.is_none() && data.len() > pat_len) {
1825         return Ok(false);
1826     }
1827
1828     for (ch, pat) in data[..prefix.len()]
1829         .iter()
1830         .zip(prefix)
1831         .chain(data[data.len() - suffix.len()..].iter().zip(suffix))
1832     {
1833         match pat.kind {
1834             box PatKind::Constant { value } => {
1835                 let b = value.eval_bits(tcx, param_env, pat.ty);
1836                 assert_eq!(b as u8 as u128, b);
1837                 if b as u8 != *ch {
1838                     return Ok(false);
1839                 }
1840             }
1841             _ => {}
1842         }
1843     }
1844
1845     Ok(true)
1846 }
1847
1848 // Whether to evaluate a constructor using exhaustive integer matching. This is true if the
1849 // constructor is a range or constant with an integer type.
1850 fn should_treat_range_exhaustively(tcx: TyCtxt<'tcx>, ctor: &Constructor<'tcx>) -> bool {
1851     let ty = match ctor {
1852         ConstantValue(value, _) => value.ty,
1853         ConstantRange(_, _, ty, _, _) => ty,
1854         _ => return false,
1855     };
1856     if let ty::Char | ty::Int(_) | ty::Uint(_) = ty.kind {
1857         !ty.is_ptr_sized_integral() || tcx.features().precise_pointer_size_matching
1858     } else {
1859         false
1860     }
1861 }
1862
1863 /// For exhaustive integer matching, some constructors are grouped within other constructors
1864 /// (namely integer typed values are grouped within ranges). However, when specialising these
1865 /// constructors, we want to be specialising for the underlying constructors (the integers), not
1866 /// the groups (the ranges). Thus we need to split the groups up. Splitting them up naïvely would
1867 /// mean creating a separate constructor for every single value in the range, which is clearly
1868 /// impractical. However, observe that for some ranges of integers, the specialisation will be
1869 /// identical across all values in that range (i.e., there are equivalence classes of ranges of
1870 /// constructors based on their `is_useful_specialized` outcome). These classes are grouped by
1871 /// the patterns that apply to them (in the matrix `P`). We can split the range whenever the
1872 /// patterns that apply to that range (specifically: the patterns that *intersect* with that range)
1873 /// change.
1874 /// Our solution, therefore, is to split the range constructor into subranges at every single point
1875 /// the group of intersecting patterns changes (using the method described below).
1876 /// And voilà! We're testing precisely those ranges that we need to, without any exhaustive matching
1877 /// on actual integers. The nice thing about this is that the number of subranges is linear in the
1878 /// number of rows in the matrix (i.e., the number of cases in the `match` statement), so we don't
1879 /// need to be worried about matching over gargantuan ranges.
1880 ///
1881 /// Essentially, given the first column of a matrix representing ranges, looking like the following:
1882 ///
1883 /// |------|  |----------| |-------|    ||
1884 ///    |-------| |-------|            |----| ||
1885 ///       |---------|
1886 ///
1887 /// We split the ranges up into equivalence classes so the ranges are no longer overlapping:
1888 ///
1889 /// |--|--|||-||||--||---|||-------|  |-|||| ||
1890 ///
1891 /// The logic for determining how to split the ranges is fairly straightforward: we calculate
1892 /// boundaries for each interval range, sort them, then create constructors for each new interval
1893 /// between every pair of boundary points. (This essentially sums up to performing the intuitive
1894 /// merging operation depicted above.)
1895 ///
1896 /// `hir_id` is `None` when we're evaluating the wildcard pattern, do not lint for overlapping in
1897 /// ranges that case.
1898 fn split_grouped_constructors<'p, 'tcx>(
1899     tcx: TyCtxt<'tcx>,
1900     param_env: ty::ParamEnv<'tcx>,
1901     ctors: Vec<Constructor<'tcx>>,
1902     matrix: &Matrix<'p, 'tcx>,
1903     ty: Ty<'tcx>,
1904     span: Span,
1905     hir_id: Option<HirId>,
1906 ) -> Vec<Constructor<'tcx>> {
1907     let mut split_ctors = Vec::with_capacity(ctors.len());
1908
1909     for ctor in ctors.into_iter() {
1910         match ctor {
1911             // For now, only ranges may denote groups of "subconstructors", so we only need to
1912             // special-case constant ranges.
1913             ConstantRange(..) if should_treat_range_exhaustively(tcx, &ctor) => {
1914                 // We only care about finding all the subranges within the range of the constructor
1915                 // range. Anything else is irrelevant, because it is guaranteed to result in
1916                 // `NotUseful`, which is the default case anyway, and can be ignored.
1917                 let ctor_range = IntRange::from_ctor(tcx, param_env, &ctor).unwrap();
1918
1919                 /// Represents a border between 2 integers. Because the intervals spanning borders
1920                 /// must be able to cover every integer, we need to be able to represent
1921                 /// 2^128 + 1 such borders.
1922                 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Debug)]
1923                 enum Border {
1924                     JustBefore(u128),
1925                     AfterMax,
1926                 }
1927
1928                 // A function for extracting the borders of an integer interval.
1929                 fn range_borders(r: IntRange<'_>) -> impl Iterator<Item = Border> {
1930                     let (lo, hi) = r.range.into_inner();
1931                     let from = Border::JustBefore(lo);
1932                     let to = match hi.checked_add(1) {
1933                         Some(m) => Border::JustBefore(m),
1934                         None => Border::AfterMax,
1935                     };
1936                     vec![from, to].into_iter()
1937                 }
1938
1939                 // Collect the span and range of all the intersecting ranges to lint on likely
1940                 // incorrect range patterns. (#63987)
1941                 let mut overlaps = vec![];
1942                 // `borders` is the set of borders between equivalence classes: each equivalence
1943                 // class lies between 2 borders.
1944                 let row_borders = matrix
1945                     .0
1946                     .iter()
1947                     .flat_map(|row| {
1948                         IntRange::from_pat(tcx, param_env, row.head()).map(|r| (r, row.len()))
1949                     })
1950                     .flat_map(|(range, row_len)| {
1951                         let intersection = ctor_range.intersection(&range);
1952                         let should_lint = ctor_range.suspicious_intersection(&range);
1953                         if let (Some(range), 1, true) = (&intersection, row_len, should_lint) {
1954                             // FIXME: for now, only check for overlapping ranges on simple range
1955                             // patterns. Otherwise with the current logic the following is detected
1956                             // as overlapping:
1957                             //   match (10u8, true) {
1958                             //    (0 ..= 125, false) => {}
1959                             //    (126 ..= 255, false) => {}
1960                             //    (0 ..= 255, true) => {}
1961                             //  }
1962                             overlaps.push(range.clone());
1963                         }
1964                         intersection
1965                     })
1966                     .flat_map(|range| range_borders(range));
1967                 let ctor_borders = range_borders(ctor_range.clone());
1968                 let mut borders: Vec<_> = row_borders.chain(ctor_borders).collect();
1969                 borders.sort_unstable();
1970
1971                 lint_overlapping_patterns(tcx, hir_id, ctor_range, ty, overlaps);
1972
1973                 // We're going to iterate through every adjacent pair of borders, making sure that
1974                 // each represents an interval of nonnegative length, and convert each such
1975                 // interval into a constructor.
1976                 for IntRange { range, .. } in
1977                     borders.windows(2).filter_map(|window| match (window[0], window[1]) {
1978                         (Border::JustBefore(n), Border::JustBefore(m)) => {
1979                             if n < m {
1980                                 Some(IntRange { range: n..=(m - 1), ty, span })
1981                             } else {
1982                                 None
1983                             }
1984                         }
1985                         (Border::JustBefore(n), Border::AfterMax) => {
1986                             Some(IntRange { range: n..=u128::MAX, ty, span })
1987                         }
1988                         (Border::AfterMax, _) => None,
1989                     })
1990                 {
1991                     split_ctors.push(IntRange::range_to_ctor(tcx, ty, range, span));
1992                 }
1993             }
1994             // Any other constructor can be used unchanged.
1995             _ => split_ctors.push(ctor),
1996         }
1997     }
1998
1999     split_ctors
2000 }
2001
2002 fn lint_overlapping_patterns(
2003     tcx: TyCtxt<'tcx>,
2004     hir_id: Option<HirId>,
2005     ctor_range: IntRange<'tcx>,
2006     ty: Ty<'tcx>,
2007     overlaps: Vec<IntRange<'tcx>>,
2008 ) {
2009     if let (true, Some(hir_id)) = (!overlaps.is_empty(), hir_id) {
2010         let mut err = tcx.struct_span_lint_hir(
2011             lint::builtin::OVERLAPPING_PATTERNS,
2012             hir_id,
2013             ctor_range.span,
2014             "multiple patterns covering the same range",
2015         );
2016         err.span_label(ctor_range.span, "overlapping patterns");
2017         for int_range in overlaps {
2018             // Use the real type for user display of the ranges:
2019             err.span_label(
2020                 int_range.span,
2021                 &format!(
2022                     "this range overlaps on `{}`",
2023                     IntRange::range_to_ctor(tcx, ty, int_range.range, DUMMY_SP).display(tcx),
2024                 ),
2025             );
2026         }
2027         err.emit();
2028     }
2029 }
2030
2031 fn constructor_covered_by_range<'tcx>(
2032     tcx: TyCtxt<'tcx>,
2033     param_env: ty::ParamEnv<'tcx>,
2034     ctor: &Constructor<'tcx>,
2035     pat: &Pat<'tcx>,
2036 ) -> Result<bool, ErrorReported> {
2037     let (from, to, end, ty) = match pat.kind {
2038         box PatKind::Constant { value } => (value, value, RangeEnd::Included, value.ty),
2039         box PatKind::Range(PatRange { lo, hi, end }) => (lo, hi, end, lo.ty),
2040         _ => bug!("`constructor_covered_by_range` called with {:?}", pat),
2041     };
2042     trace!("constructor_covered_by_range {:#?}, {:#?}, {:#?}, {}", ctor, from, to, ty);
2043     let cmp_from = |c_from| {
2044         compare_const_vals(tcx, c_from, from, param_env, ty).map(|res| res != Ordering::Less)
2045     };
2046     let cmp_to = |c_to| compare_const_vals(tcx, c_to, to, param_env, ty);
2047     macro_rules! some_or_ok {
2048         ($e:expr) => {
2049             match $e {
2050                 Some(to) => to,
2051                 None => return Ok(false), // not char or int
2052             }
2053         };
2054     }
2055     match *ctor {
2056         ConstantValue(value, _) => {
2057             let to = some_or_ok!(cmp_to(value));
2058             let end =
2059                 (to == Ordering::Less) || (end == RangeEnd::Included && to == Ordering::Equal);
2060             Ok(some_or_ok!(cmp_from(value)) && end)
2061         }
2062         ConstantRange(from, to, ty, RangeEnd::Included, _) => {
2063             let to =
2064                 some_or_ok!(cmp_to(ty::Const::from_bits(tcx, to, ty::ParamEnv::empty().and(ty),)));
2065             let end =
2066                 (to == Ordering::Less) || (end == RangeEnd::Included && to == Ordering::Equal);
2067             Ok(some_or_ok!(cmp_from(ty::Const::from_bits(
2068                 tcx,
2069                 from,
2070                 ty::ParamEnv::empty().and(ty),
2071             ))) && end)
2072         }
2073         ConstantRange(from, to, ty, RangeEnd::Excluded, _) => {
2074             let to =
2075                 some_or_ok!(cmp_to(ty::Const::from_bits(tcx, to, ty::ParamEnv::empty().and(ty))));
2076             let end =
2077                 (to == Ordering::Less) || (end == RangeEnd::Excluded && to == Ordering::Equal);
2078             Ok(some_or_ok!(cmp_from(ty::Const::from_bits(
2079                 tcx,
2080                 from,
2081                 ty::ParamEnv::empty().and(ty)
2082             ))) && end)
2083         }
2084         Single => Ok(true),
2085         _ => bug!(),
2086     }
2087 }
2088
2089 fn patterns_for_variant<'p, 'a: 'p, 'tcx>(
2090     cx: &mut MatchCheckCtxt<'a, 'tcx>,
2091     subpatterns: &'p [FieldPat<'tcx>],
2092     ctor_wild_subpatterns: &[&'p Pat<'tcx>],
2093     is_non_exhaustive: bool,
2094 ) -> PatStack<'p, 'tcx> {
2095     let mut result = SmallVec::from_slice(ctor_wild_subpatterns);
2096
2097     for subpat in subpatterns {
2098         if !is_non_exhaustive || !cx.is_uninhabited(subpat.pattern.ty) {
2099             result[subpat.field.index()] = &subpat.pattern;
2100         }
2101     }
2102
2103     debug!(
2104         "patterns_for_variant({:#?}, {:#?}) = {:#?}",
2105         subpatterns, ctor_wild_subpatterns, result
2106     );
2107     PatStack::from_vec(result)
2108 }
2109
2110 /// This is the main specialization step. It expands the pattern
2111 /// into `arity` patterns based on the constructor. For most patterns, the step is trivial,
2112 /// for instance tuple patterns are flattened and box patterns expand into their inner pattern.
2113 /// Returns `None` if the pattern does not have the given constructor.
2114 ///
2115 /// OTOH, slice patterns with a subslice pattern (tail @ ..) can be expanded into multiple
2116 /// different patterns.
2117 /// Structure patterns with a partial wild pattern (Foo { a: 42, .. }) have their missing
2118 /// fields filled with wild patterns.
2119 fn specialize_one_pattern<'p, 'a: 'p, 'q: 'p, 'tcx>(
2120     cx: &mut MatchCheckCtxt<'a, 'tcx>,
2121     pat: &'q Pat<'tcx>,
2122     constructor: &Constructor<'tcx>,
2123     ctor_wild_subpatterns: &[&'p Pat<'tcx>],
2124 ) -> Option<PatStack<'p, 'tcx>> {
2125     let result = match *pat.kind {
2126         PatKind::AscribeUserType { ref subpattern, .. } => PatStack::from_pattern(subpattern)
2127             .specialize_constructor(cx, constructor, ctor_wild_subpatterns),
2128
2129         PatKind::Binding { .. } | PatKind::Wild => {
2130             Some(PatStack::from_slice(ctor_wild_subpatterns))
2131         }
2132
2133         PatKind::Variant { adt_def, variant_index, ref subpatterns, .. } => {
2134             let ref variant = adt_def.variants[variant_index];
2135             let is_non_exhaustive = variant.is_field_list_non_exhaustive() && !cx.is_local(pat.ty);
2136             Some(Variant(variant.def_id))
2137                 .filter(|variant_constructor| variant_constructor == constructor)
2138                 .map(|_| {
2139                     patterns_for_variant(cx, subpatterns, ctor_wild_subpatterns, is_non_exhaustive)
2140                 })
2141         }
2142
2143         PatKind::Leaf { ref subpatterns } => {
2144             Some(patterns_for_variant(cx, subpatterns, ctor_wild_subpatterns, false))
2145         }
2146
2147         PatKind::Deref { ref subpattern } => Some(PatStack::from_pattern(subpattern)),
2148
2149         PatKind::Constant { value } if constructor.is_slice() => {
2150             // We extract an `Option` for the pointer because slices of zero
2151             // elements don't necessarily point to memory, they are usually
2152             // just integers. The only time they should be pointing to memory
2153             // is when they are subslices of nonzero slices.
2154             let (alloc, offset, n, ty) = match value.ty.kind {
2155                 ty::Array(t, n) => match value.val {
2156                     ConstValue::ByRef { offset, alloc, .. } => {
2157                         (alloc, offset, n.eval_usize(cx.tcx, cx.param_env), t)
2158                     }
2159                     _ => span_bug!(pat.span, "array pattern is {:?}", value,),
2160                 },
2161                 ty::Slice(t) => {
2162                     match value.val {
2163                         ConstValue::Slice { data, start, end } => {
2164                             (data, Size::from_bytes(start as u64), (end - start) as u64, t)
2165                         }
2166                         ConstValue::ByRef { .. } => {
2167                             // FIXME(oli-obk): implement `deref` for `ConstValue`
2168                             return None;
2169                         }
2170                         _ => span_bug!(
2171                             pat.span,
2172                             "slice pattern constant must be scalar pair but is {:?}",
2173                             value,
2174                         ),
2175                     }
2176                 }
2177                 _ => span_bug!(
2178                     pat.span,
2179                     "unexpected const-val {:?} with ctor {:?}",
2180                     value,
2181                     constructor,
2182                 ),
2183             };
2184             if ctor_wild_subpatterns.len() as u64 == n {
2185                 // convert a constant slice/array pattern to a list of patterns.
2186                 let layout = cx.tcx.layout_of(cx.param_env.and(ty)).ok()?;
2187                 let ptr = Pointer::new(AllocId(0), offset);
2188                 (0..n)
2189                     .map(|i| {
2190                         let ptr = ptr.offset(layout.size * i, &cx.tcx).ok()?;
2191                         let scalar = alloc.read_scalar(&cx.tcx, ptr, layout.size).ok()?;
2192                         let scalar = scalar.not_undef().ok()?;
2193                         let value = ty::Const::from_scalar(cx.tcx, scalar, ty);
2194                         let pattern =
2195                             Pat { ty, span: pat.span, kind: box PatKind::Constant { value } };
2196                         Some(&*cx.pattern_arena.alloc(pattern))
2197                     })
2198                     .collect()
2199             } else {
2200                 None
2201             }
2202         }
2203
2204         PatKind::Constant { .. } | PatKind::Range { .. } => {
2205             // If the constructor is a:
2206             // - Single value: add a row if the pattern contains the constructor.
2207             // - Range: add a row if the constructor intersects the pattern.
2208             if should_treat_range_exhaustively(cx.tcx, constructor) {
2209                 match (
2210                     IntRange::from_ctor(cx.tcx, cx.param_env, constructor),
2211                     IntRange::from_pat(cx.tcx, cx.param_env, pat),
2212                 ) {
2213                     (Some(ctor), Some(pat)) => ctor.intersection(&pat).map(|_| {
2214                         let (pat_lo, pat_hi) = pat.range.into_inner();
2215                         let (ctor_lo, ctor_hi) = ctor.range.into_inner();
2216                         assert!(pat_lo <= ctor_lo && ctor_hi <= pat_hi);
2217                         PatStack::default()
2218                     }),
2219                     _ => None,
2220                 }
2221             } else {
2222                 // Fallback for non-ranges and ranges that involve
2223                 // floating-point numbers, which are not conveniently handled
2224                 // by `IntRange`. For these cases, the constructor may not be a
2225                 // range so intersection actually devolves into being covered
2226                 // by the pattern.
2227                 match constructor_covered_by_range(cx.tcx, cx.param_env, constructor, pat) {
2228                     Ok(true) => Some(PatStack::default()),
2229                     Ok(false) | Err(ErrorReported) => None,
2230                 }
2231             }
2232         }
2233
2234         PatKind::Array { ref prefix, ref slice, ref suffix }
2235         | PatKind::Slice { ref prefix, ref slice, ref suffix } => match *constructor {
2236             Slice(..) => {
2237                 let pat_len = prefix.len() + suffix.len();
2238                 if let Some(slice_count) = ctor_wild_subpatterns.len().checked_sub(pat_len) {
2239                     if slice_count == 0 || slice.is_some() {
2240                         Some(
2241                             prefix
2242                                 .iter()
2243                                 .chain(
2244                                     ctor_wild_subpatterns
2245                                         .iter()
2246                                         .map(|p| *p)
2247                                         .skip(prefix.len())
2248                                         .take(slice_count)
2249                                         .chain(suffix.iter()),
2250                                 )
2251                                 .collect(),
2252                         )
2253                     } else {
2254                         None
2255                     }
2256                 } else {
2257                     None
2258                 }
2259             }
2260             ConstantValue(cv, _) => {
2261                 match slice_pat_covered_by_const(
2262                     cx.tcx,
2263                     pat.span,
2264                     cv,
2265                     prefix,
2266                     slice,
2267                     suffix,
2268                     cx.param_env,
2269                 ) {
2270                     Ok(true) => Some(PatStack::default()),
2271                     Ok(false) => None,
2272                     Err(ErrorReported) => None,
2273                 }
2274             }
2275             _ => span_bug!(pat.span, "unexpected ctor {:?} for slice pat", constructor),
2276         },
2277
2278         PatKind::Or { .. } => {
2279             bug!("support for or-patterns has not been fully implemented yet.");
2280         }
2281     };
2282     debug!("specialize({:#?}, {:#?}) = {:#?}", pat, ctor_wild_subpatterns, result);
2283
2284     result
2285 }