]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/hair/pattern/_match.rs
Tweak comments
[rust.git] / src / librustc_mir / hair / pattern / _match.rs
1 // Copyright 2012-2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 /// This file includes the logic for exhaustiveness and usefulness checking for
12 /// pattern-matching. Specifically, given a list of patterns for a type, we can
13 /// tell whether:
14 /// (a) the patterns cover every possible constructor for the type [exhaustiveness]
15 /// (b) each pattern is necessary [usefulness]
16 ///
17 /// The algorithm implemented here is a modified version of the one described in:
18 /// http://moscova.inria.fr/~maranget/papers/warn/index.html
19 /// However, to save future implementors from reading the original paper, I'm going
20 /// to summarise the algorithm here to hopefully save time and be a little clearer
21 /// (without being so rigorous).
22 ///
23 /// The core of the algorithm revolves about a "usefulness" check. In particular, we
24 /// are trying to compute a predicate `U(P, p_{m + 1})` where `P` is a list of patterns
25 /// of length `m` for a compound (product) type with `n` components (we refer to this as
26 /// a matrix). `U(P, p_{m + 1})` represents whether, given an existing list of patterns
27 /// `p_1 ..= p_m`, adding a new pattern will be "useful" (that is, cover previously-
28 /// uncovered values of the type).
29 ///
30 /// If we have this predicate, then we can easily compute both exhaustiveness of an
31 /// entire set of patterns and the individual usefulness of each one.
32 /// (a) the set of patterns is exhaustive iff `U(P, _)` is false (i.e. adding a wildcard
33 /// match doesn't increase the number of values we're matching)
34 /// (b) a pattern `p_i` is not useful if `U(P[0..=(i-1), p_i)` is false (i.e. adding a
35 /// pattern to those that have come before it doesn't increase the number of values
36 /// we're matching).
37 ///
38 /// For example, say we have the following:
39 /// ```
40 ///     // x: (Option<bool>, Result<()>)
41 ///     match x {
42 ///         (Some(true), _) => {}
43 ///         (None, Err(())) => {}
44 ///         (None, Err(_)) => {}
45 ///     }
46 /// ```
47 /// Here, the matrix `P` is 3 x 2 (rows x columns).
48 /// [
49 ///     [Some(true), _],
50 ///     [None, Err(())],
51 ///     [None, Err(_)],
52 /// ]
53 /// We can tell it's not exhaustive, because `U(P, _)` is true (we're not covering
54 /// `[Some(false), _]`, for instance). In addition, row 3 is not useful, because
55 /// all the values it covers are already covered by row 2.
56 ///
57 /// To compute `U`, we must have two other concepts.
58 ///     1. `S(c, P)` is a "specialised matrix", where `c` is a constructor (like `Some` or
59 ///        `None`). You can think of it as filtering `P` to just the rows whose *first* pattern
60 ///        can cover `c` (and expanding OR-patterns into distinct patterns), and then expanding
61 ///        the constructor into all of its components.
62 ///        The specialisation of a row vector is computed by `specialize`.
63 ///
64 ///        It is computed as follows. For each row `p_i` of P, we have four cases:
65 ///             1.1. `p_(i,1) = c(r_1, .., r_a)`. Then `S(c, P)` has a corresponding row:
66 ///                     r_1, .., r_a, p_(i,2), .., p_(i,n)
67 ///             1.2. `p_(i,1) = c'(r_1, .., r_a')` where `c ≠ c'`. Then `S(c, P)` has no
68 ///                  corresponding row.
69 ///             1.3. `p_(i,1) = _`. Then `S(c, P)` has a corresponding row:
70 ///                     _, .., _, p_(i,2), .., p_(i,n)
71 ///             1.4. `p_(i,1) = r_1 | r_2`. Then `S(c, P)` has corresponding rows inlined from:
72 ///                     S(c, (r_1, p_(i,2), .., p_(i,n)))
73 ///                     S(c, (r_2, p_(i,2), .., p_(i,n)))
74 ///
75 ///     2. `D(P)` is a "default matrix". This is used when we know there are missing
76 ///        constructor cases, but there might be existing wildcard patterns, so to check the
77 ///        usefulness of the matrix, we have to check all its *other* components.
78 ///        The default matrix is computed inline in `is_useful`.
79 ///
80 ///         It is computed as follows. For each row `p_i` of P, we have three cases:
81 ///             1.1. `p_(i,1) = c(r_1, .., r_a)`. Then `D(P)` has no corresponding row.
82 ///             1.2. `p_(i,1) = _`. Then `D(P)` has a corresponding row:
83 ///                     p_(i,2), .., p_(i,n)
84 ///             1.3. `p_(i,1) = r_1 | r_2`. Then `D(P)` has corresponding rows inlined from:
85 ///                     D((r_1, p_(i,2), .., p_(i,n)))
86 ///                     D((r_2, p_(i,2), .., p_(i,n)))
87 ///
88 ///     Note that the OR-patterns are not always used directly in Rust, but are used to derive
89 ///     the exhaustive integer matching rules, so they're written here for posterity.
90 ///
91 /// The algorithm for computing `U`
92 /// -------------------------------
93 /// The algorithm is inductive (on the number of columns: i.e. components of tuple patterns).
94 /// That means we're going to check the components from left-to-right, so the algorithm
95 /// operates principally on the first component of the matrix and new pattern `p_{m + 1}`.
96 /// This algorithm is realised in the `is_useful` function.
97 ///
98 /// Base case. (`n = 0`, i.e. an empty tuple pattern)
99 ///     - If `P` already contains an empty pattern (i.e. if the number of patterns `m > 0`),
100 ///       then `U(P, p_{m + 1})` is false.
101 ///     - Otherwise, `P` must be empty, so `U(P, p_{m + 1})` is true.
102 ///
103 /// Inductive step. (`n > 0`, i.e. whether there's at least one column
104 ///                  [which may then be expanded into further columns later])
105 ///     We're going to match on the new pattern, `p_{m + 1}`.
106 ///         - If `p_{m + 1} == c(r_1, .., r_a)`, then we have a constructor pattern.
107 ///           Thus, the usefulness of `p_{m + 1}` can be reduced to whether it is useful when
108 ///           we ignore all the patterns in `P` that involve other constructors. This is where
109 ///           `S(c, P)` comes in:
110 ///           `U(P, p_{m + 1}) := U(S(c, P), S(c, p_{m + 1}))`
111 ///           This special case is handled in `is_useful_specialized`.
112 ///         - If `p_{m + 1} == _`, then we have two more cases:
113 ///             + All the constructors of the first component of the type exist within
114 ///               all the rows (after having expanded OR-patterns). In this case:
115 ///               `U(P, p_{m + 1}) := ∨(k ϵ constructors) U(S(k, P), S(k, p_{m + 1}))`
116 ///               I.e. the pattern `p_{m + 1}` is only useful when all the constructors are
117 ///               present *if* its later components are useful for the respective constructors
118 ///               covered by `p_{m + 1}` (usually a single constructor, but all in the case of `_`).
119 ///             + Some constructors are not present in the existing rows (after having expanded
120 ///               OR-patterns). However, there might be wildcard patterns (`_`) present. Thus, we
121 ///               are only really concerned with the other patterns leading with wildcards. This is
122 ///               where `D` comes in:
123 ///               `U(P, p_{m + 1}) := U(D(P), p_({m + 1},2), ..,  p_({m + 1},n))`
124 ///         - If `p_{m + 1} == r_1 | r_2`, then the usefulness depends on each separately:
125 ///           `U(P, p_{m + 1}) := U(P, (r_1, p_({m + 1},2), .., p_({m + 1},n)))
126 ///                            || U(P, (r_2, p_({m + 1},2), .., p_({m + 1},n)))`
127 ///
128 /// Modifications to the algorithm
129 /// ------------------------------
130 /// The algorithm in the paper doesn't cover some of the special cases that arise in Rust, for
131 /// example uninhabited types and variable-length slice patterns. These are drawn attention to
132 /// throughout the code below. I'll make a quick note here about how exhaustive integer matching
133 /// is accounted for, though.
134 ///
135 /// Exhaustive integer matching
136 /// ---------------------------
137 /// An integer type can be thought of as a (huge) sum type: 1 | 2 | 3 | ...
138 /// So to support exhaustive integer matching, we can make use of the logic in the paper for
139 /// OR-patterns. However, we obviously can't just treat ranges x..=y as individual sums, because
140 /// they are likely gigantic. So we instead treat ranges as constructors of the integers. This means
141 /// that we have a constructor *of* constructors (the integers themselves). We then need to work
142 /// through all the inductive step rules above, deriving how the ranges would be treated as
143 /// OR-patterns, and making sure that they're treated in the same way even when they're ranges.
144 /// There are really only four special cases here:
145 /// - When we match on a constructor that's actually a range, we have to treat it as if we would
146 ///   an OR-pattern.
147 ///     + It turns out that we can simply extend the case for single-value patterns in
148 ///      `specialize` to either be *equal* to a value constructor, or *contained within* a range
149 ///      constructor.
150 ///     + When the pattern itself is a range, you just want to tell whether any of the values in
151 ///       the pattern range coincide with values in the constructor range, which is precisely
152 ///       intersection.
153 ///   Since when encountering a range pattern for a value constructor, we also use inclusion, it
154 ///   means that whenever the constructor is a value/range and the pattern is also a value/range,
155 ///   we can simply use intersection to test usefulness.
156 /// - When we're testing for usefulness of a pattern and the pattern's first component is a
157 ///   wildcard.
158 ///     + If all the constructors appear in the matrix, we have a slight complication. By default,
159 ///       the behaviour (i.e. a disjunction over specialised matrices for each constructor) is
160 ///       invalid, because we want a disjunction over every *integer* in each range, not just a
161 ///       disjunction over every range. This is a bit more tricky to deal with: essentially we need
162 ///       to form equivalence classes of subranges of the constructor range for which the behaviour
163 ///       of the matrix `P` and new pattern `p_{m + 1}` are the same. This is described in more
164 ///       detail in `split_grouped_constructors`.
165 ///     + If some constructors are missing from the matrix, it turns out we don't need to do
166 ///       anything special (because we know none of the integers are actually wildcards: i.e. we
167 ///       can't span wildcards using ranges).
168
169 use self::Constructor::*;
170 use self::Usefulness::*;
171 use self::WitnessPreference::*;
172
173 use rustc_data_structures::fx::FxHashMap;
174 use rustc_data_structures::indexed_vec::Idx;
175
176 use super::{FieldPattern, Pattern, PatternKind};
177 use super::{PatternFoldable, PatternFolder, compare_const_vals};
178
179 use rustc::hir::def_id::DefId;
180 use rustc::hir::RangeEnd;
181 use rustc::ty::{self, Ty, TyCtxt, TypeFoldable};
182 use rustc::ty::layout::{Integer, IntegerExt};
183
184 use rustc::mir::Field;
185 use rustc::mir::interpret::ConstValue;
186 use rustc::util::common::ErrorReported;
187
188 use syntax::attr::{SignedInt, UnsignedInt};
189 use syntax_pos::{Span, DUMMY_SP};
190
191 use arena::TypedArena;
192
193 use std::cmp::{self, Ordering, min, max};
194 use std::fmt;
195 use std::iter::{FromIterator, IntoIterator};
196 use std::ops::RangeInclusive;
197
198 pub fn expand_pattern<'a, 'tcx>(cx: &MatchCheckCtxt<'a, 'tcx>, pat: Pattern<'tcx>)
199                                 -> &'a Pattern<'tcx>
200 {
201     cx.pattern_arena.alloc(LiteralExpander.fold_pattern(&pat))
202 }
203
204 struct LiteralExpander;
205 impl<'tcx> PatternFolder<'tcx> for LiteralExpander {
206     fn fold_pattern(&mut self, pat: &Pattern<'tcx>) -> Pattern<'tcx> {
207         match (&pat.ty.sty, &*pat.kind) {
208             (&ty::TyRef(_, rty, _), &PatternKind::Constant { ref value }) => {
209                 Pattern {
210                     ty: pat.ty,
211                     span: pat.span,
212                     kind: box PatternKind::Deref {
213                         subpattern: Pattern {
214                             ty: rty,
215                             span: pat.span,
216                             kind: box PatternKind::Constant { value: value.clone() },
217                         }
218                     }
219                 }
220             }
221             (_, &PatternKind::Binding { subpattern: Some(ref s), .. }) => {
222                 s.fold_with(self)
223             }
224             _ => pat.super_fold_with(self)
225         }
226     }
227 }
228
229 impl<'tcx> Pattern<'tcx> {
230     fn is_wildcard(&self) -> bool {
231         match *self.kind {
232             PatternKind::Binding { subpattern: None, .. } | PatternKind::Wild =>
233                 true,
234             _ => false
235         }
236     }
237 }
238
239 pub struct Matrix<'a, 'tcx: 'a>(Vec<Vec<&'a Pattern<'tcx>>>);
240
241 impl<'a, 'tcx> Matrix<'a, 'tcx> {
242     pub fn empty() -> Self {
243         Matrix(vec![])
244     }
245
246     pub fn push(&mut self, row: Vec<&'a Pattern<'tcx>>) {
247         self.0.push(row)
248     }
249 }
250
251 /// Pretty-printer for matrices of patterns, example:
252 /// ++++++++++++++++++++++++++
253 /// + _     + []             +
254 /// ++++++++++++++++++++++++++
255 /// + true  + [First]        +
256 /// ++++++++++++++++++++++++++
257 /// + true  + [Second(true)] +
258 /// ++++++++++++++++++++++++++
259 /// + false + [_]            +
260 /// ++++++++++++++++++++++++++
261 /// + _     + [_, _, ..tail] +
262 /// ++++++++++++++++++++++++++
263 impl<'a, 'tcx> fmt::Debug for Matrix<'a, 'tcx> {
264     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
265         write!(f, "\n")?;
266
267         let &Matrix(ref m) = self;
268         let pretty_printed_matrix: Vec<Vec<String>> = m.iter().map(|row| {
269             row.iter().map(|pat| format!("{:?}", pat)).collect()
270         }).collect();
271
272         let column_count = m.iter().map(|row| row.len()).max().unwrap_or(0);
273         assert!(m.iter().all(|row| row.len() == column_count));
274         let column_widths: Vec<usize> = (0..column_count).map(|col| {
275             pretty_printed_matrix.iter().map(|row| row[col].len()).max().unwrap_or(0)
276         }).collect();
277
278         let total_width = column_widths.iter().cloned().sum::<usize>() + column_count * 3 + 1;
279         let br = "+".repeat(total_width);
280         write!(f, "{}\n", br)?;
281         for row in pretty_printed_matrix {
282             write!(f, "+")?;
283             for (column, pat_str) in row.into_iter().enumerate() {
284                 write!(f, " ")?;
285                 write!(f, "{:1$}", pat_str, column_widths[column])?;
286                 write!(f, " +")?;
287             }
288             write!(f, "\n")?;
289             write!(f, "{}\n", br)?;
290         }
291         Ok(())
292     }
293 }
294
295 impl<'a, 'tcx> FromIterator<Vec<&'a Pattern<'tcx>>> for Matrix<'a, 'tcx> {
296     fn from_iter<T: IntoIterator<Item=Vec<&'a Pattern<'tcx>>>>(iter: T) -> Self
297     {
298         Matrix(iter.into_iter().collect())
299     }
300 }
301
302 pub struct MatchCheckCtxt<'a, 'tcx: 'a> {
303     pub tcx: TyCtxt<'a, 'tcx, 'tcx>,
304     /// The module in which the match occurs. This is necessary for
305     /// checking inhabited-ness of types because whether a type is (visibly)
306     /// inhabited can depend on whether it was defined in the current module or
307     /// not. eg. `struct Foo { _private: ! }` cannot be seen to be empty
308     /// outside it's module and should not be matchable with an empty match
309     /// statement.
310     pub module: DefId,
311     pub pattern_arena: &'a TypedArena<Pattern<'tcx>>,
312     pub byte_array_map: FxHashMap<*const Pattern<'tcx>, Vec<&'a Pattern<'tcx>>>,
313 }
314
315 impl<'a, 'tcx> MatchCheckCtxt<'a, 'tcx> {
316     pub fn create_and_enter<F, R>(
317         tcx: TyCtxt<'a, 'tcx, 'tcx>,
318         module: DefId,
319         f: F) -> R
320         where F: for<'b> FnOnce(MatchCheckCtxt<'b, 'tcx>) -> R
321     {
322         let pattern_arena = TypedArena::new();
323
324         f(MatchCheckCtxt {
325             tcx,
326             module,
327             pattern_arena: &pattern_arena,
328             byte_array_map: FxHashMap::default(),
329         })
330     }
331
332     // convert a byte-string pattern to a list of u8 patterns.
333     fn lower_byte_str_pattern<'p>(&mut self, pat: &'p Pattern<'tcx>) -> Vec<&'p Pattern<'tcx>>
334             where 'a: 'p
335     {
336         let pattern_arena = &*self.pattern_arena;
337         let tcx = self.tcx;
338         self.byte_array_map.entry(pat).or_insert_with(|| {
339             match pat.kind {
340                 box PatternKind::Constant {
341                     value: const_val
342                 } => {
343                     if let Some(ptr) = const_val.to_ptr() {
344                         let is_array_ptr = const_val.ty
345                             .builtin_deref(true)
346                             .and_then(|t| t.ty.builtin_index())
347                             .map_or(false, |t| t == tcx.types.u8);
348                         assert!(is_array_ptr);
349                         let alloc = tcx.alloc_map.lock().unwrap_memory(ptr.alloc_id);
350                         assert_eq!(ptr.offset.bytes(), 0);
351                         // FIXME: check length
352                         alloc.bytes.iter().map(|b| {
353                             &*pattern_arena.alloc(Pattern {
354                                 ty: tcx.types.u8,
355                                 span: pat.span,
356                                 kind: box PatternKind::Constant {
357                                     value: ty::Const::from_bits(
358                                         tcx,
359                                         *b as u128,
360                                         ty::ParamEnv::empty().and(tcx.types.u8))
361                                 }
362                             })
363                         }).collect()
364                     } else {
365                         bug!("not a byte str: {:?}", const_val)
366                     }
367                 }
368                 _ => span_bug!(pat.span, "unexpected byte array pattern {:?}", pat)
369             }
370         }).clone()
371     }
372
373     fn is_uninhabited(&self, ty: Ty<'tcx>) -> bool {
374         if self.tcx.features().exhaustive_patterns {
375             self.tcx.is_ty_uninhabited_from(self.module, ty)
376         } else {
377             false
378         }
379     }
380
381     fn is_non_exhaustive_enum(&self, ty: Ty<'tcx>) -> bool {
382         match ty.sty {
383             ty::TyAdt(adt_def, ..) => adt_def.is_enum() && adt_def.is_non_exhaustive(),
384             _ => false,
385         }
386     }
387
388     fn is_local(&self, ty: Ty<'tcx>) -> bool {
389         match ty.sty {
390             ty::TyAdt(adt_def, ..) => adt_def.did.is_local(),
391             _ => false,
392         }
393     }
394
395     fn is_variant_uninhabited(&self,
396                               variant: &'tcx ty::VariantDef,
397                               substs: &'tcx ty::subst::Substs<'tcx>)
398                               -> bool
399     {
400         if self.tcx.features().exhaustive_patterns {
401             self.tcx.is_enum_variant_uninhabited_from(self.module, variant, substs)
402         } else {
403             false
404         }
405     }
406 }
407
408 #[derive(Clone, Debug, PartialEq)]
409 pub enum Constructor<'tcx> {
410     /// The constructor of all patterns that don't vary by constructor,
411     /// e.g. struct patterns and fixed-length arrays.
412     Single,
413     /// Enum variants.
414     Variant(DefId),
415     /// Literal values.
416     ConstantValue(&'tcx ty::Const<'tcx>),
417     /// Ranges of literal values (`2...5` and `2..5`).
418     ConstantRange(&'tcx ty::Const<'tcx>, &'tcx ty::Const<'tcx>, RangeEnd),
419     /// Array patterns of length n.
420     Slice(u64),
421 }
422
423 impl<'tcx> Constructor<'tcx> {
424     fn variant_index_for_adt(&self, adt: &'tcx ty::AdtDef) -> usize {
425         match self {
426             &Variant(vid) => adt.variant_index_with_id(vid),
427             &Single => {
428                 assert!(!adt.is_enum());
429                 0
430             }
431             _ => bug!("bad constructor {:?} for adt {:?}", self, adt)
432         }
433     }
434 }
435
436 #[derive(Clone, Debug)]
437 pub enum Usefulness<'tcx> {
438     Useful,
439     UsefulWithWitness(Vec<Witness<'tcx>>),
440     NotUseful
441 }
442
443 impl<'tcx> Usefulness<'tcx> {
444     fn is_useful(&self) -> bool {
445         match *self {
446             NotUseful => false,
447             _ => true
448         }
449     }
450 }
451
452 #[derive(Copy, Clone, Debug)]
453 pub enum WitnessPreference {
454     ConstructWitness,
455     LeaveOutWitness
456 }
457
458 #[derive(Copy, Clone, Debug)]
459 struct PatternContext<'tcx> {
460     ty: Ty<'tcx>,
461     max_slice_length: u64,
462 }
463
464 /// A witness of non-exhaustiveness for error reporting, represented
465 /// as a list of patterns (in reverse order of construction) with
466 /// wildcards inside to represent elements that can take any inhabitant
467 /// of the type as a value.
468 ///
469 /// A witness against a list of patterns should have the same types
470 /// and length as the pattern matched against. Because Rust `match`
471 /// is always against a single pattern, at the end the witness will
472 /// have length 1, but in the middle of the algorithm, it can contain
473 /// multiple patterns.
474 ///
475 /// For example, if we are constructing a witness for the match against
476 /// ```
477 /// struct Pair(Option<(u32, u32)>, bool);
478 ///
479 /// match (p: Pair) {
480 ///    Pair(None, _) => {}
481 ///    Pair(_, false) => {}
482 /// }
483 /// ```
484 ///
485 /// We'll perform the following steps:
486 /// 1. Start with an empty witness
487 ///     `Witness(vec![])`
488 /// 2. Push a witness `Some(_)` against the `None`
489 ///     `Witness(vec![Some(_)])`
490 /// 3. Push a witness `true` against the `false`
491 ///     `Witness(vec![Some(_), true])`
492 /// 4. Apply the `Pair` constructor to the witnesses
493 ///     `Witness(vec![Pair(Some(_), true)])`
494 ///
495 /// The final `Pair(Some(_), true)` is then the resulting witness.
496 #[derive(Clone, Debug)]
497 pub struct Witness<'tcx>(Vec<Pattern<'tcx>>);
498
499 impl<'tcx> Witness<'tcx> {
500     pub fn single_pattern(&self) -> &Pattern<'tcx> {
501         assert_eq!(self.0.len(), 1);
502         &self.0[0]
503     }
504
505     fn push_wild_constructor<'a>(
506         mut self,
507         cx: &MatchCheckCtxt<'a, 'tcx>,
508         ctor: &Constructor<'tcx>,
509         ty: Ty<'tcx>)
510         -> Self
511     {
512         let sub_pattern_tys = constructor_sub_pattern_tys(cx, ctor, ty);
513         self.0.extend(sub_pattern_tys.into_iter().map(|ty| {
514             Pattern {
515                 ty,
516                 span: DUMMY_SP,
517                 kind: box PatternKind::Wild,
518             }
519         }));
520         self.apply_constructor(cx, ctor, ty)
521     }
522
523
524     /// Constructs a partial witness for a pattern given a list of
525     /// patterns expanded by the specialization step.
526     ///
527     /// When a pattern P is discovered to be useful, this function is used bottom-up
528     /// to reconstruct a complete witness, e.g. a pattern P' that covers a subset
529     /// of values, V, where each value in that set is not covered by any previously
530     /// used patterns and is covered by the pattern P'. Examples:
531     ///
532     /// left_ty: tuple of 3 elements
533     /// pats: [10, 20, _]           => (10, 20, _)
534     ///
535     /// left_ty: struct X { a: (bool, &'static str), b: usize}
536     /// pats: [(false, "foo"), 42]  => X { a: (false, "foo"), b: 42 }
537     fn apply_constructor<'a>(
538         mut self,
539         cx: &MatchCheckCtxt<'a,'tcx>,
540         ctor: &Constructor<'tcx>,
541         ty: Ty<'tcx>)
542         -> Self
543     {
544         let arity = constructor_arity(cx, ctor, ty);
545         let pat = {
546             let len = self.0.len() as u64;
547             let mut pats = self.0.drain((len - arity) as usize..).rev();
548
549             match ty.sty {
550                 ty::TyAdt(..) |
551                 ty::TyTuple(..) => {
552                     let pats = pats.enumerate().map(|(i, p)| {
553                         FieldPattern {
554                             field: Field::new(i),
555                             pattern: p
556                         }
557                     }).collect();
558
559                     if let ty::TyAdt(adt, substs) = ty.sty {
560                         if adt.is_enum() {
561                             PatternKind::Variant {
562                                 adt_def: adt,
563                                 substs,
564                                 variant_index: ctor.variant_index_for_adt(adt),
565                                 subpatterns: pats
566                             }
567                         } else {
568                             PatternKind::Leaf { subpatterns: pats }
569                         }
570                     } else {
571                         PatternKind::Leaf { subpatterns: pats }
572                     }
573                 }
574
575                 ty::TyRef(..) => {
576                     PatternKind::Deref { subpattern: pats.nth(0).unwrap() }
577                 }
578
579                 ty::TySlice(_) | ty::TyArray(..) => {
580                     PatternKind::Slice {
581                         prefix: pats.collect(),
582                         slice: None,
583                         suffix: vec![]
584                     }
585                 }
586
587                 _ => {
588                     match *ctor {
589                         ConstantValue(value) => PatternKind::Constant { value },
590                         ConstantRange(lo, hi, end) => PatternKind::Range { lo, hi, end },
591                         _ => PatternKind::Wild,
592                     }
593                 }
594             }
595         };
596
597         self.0.push(Pattern {
598             ty,
599             span: DUMMY_SP,
600             kind: Box::new(pat),
601         });
602
603         self
604     }
605 }
606
607 /// This determines the set of all possible constructors of a pattern matching
608 /// values of type `left_ty`. For vectors, this would normally be an infinite set
609 /// but is instead bounded by the maximum fixed length of slice patterns in
610 /// the column of patterns being analyzed.
611 ///
612 /// We make sure to omit constructors that are statically impossible. eg for
613 /// Option<!> we do not include Some(_) in the returned list of constructors.
614 fn all_constructors<'a, 'tcx: 'a>(cx: &mut MatchCheckCtxt<'a, 'tcx>,
615                                   pcx: PatternContext<'tcx>)
616                                   -> Vec<Constructor<'tcx>>
617 {
618     debug!("all_constructors({:?})", pcx.ty);
619     let exhaustive_integer_patterns = cx.tcx.features().exhaustive_integer_patterns;
620     let ctors = match pcx.ty.sty {
621         ty::TyBool => {
622             [true, false].iter().map(|&b| {
623                 ConstantValue(ty::Const::from_bool(cx.tcx, b))
624             }).collect()
625         }
626         ty::TyArray(ref sub_ty, len) if len.assert_usize(cx.tcx).is_some() => {
627             let len = len.unwrap_usize(cx.tcx);
628             if len != 0 && cx.is_uninhabited(sub_ty) {
629                 vec![]
630             } else {
631                 vec![Slice(len)]
632             }
633         }
634         // Treat arrays of a constant but unknown length like slices.
635         ty::TyArray(ref sub_ty, _) |
636         ty::TySlice(ref sub_ty) => {
637             if cx.is_uninhabited(sub_ty) {
638                 vec![Slice(0)]
639             } else {
640                 (0..pcx.max_slice_length+1).map(|length| Slice(length)).collect()
641             }
642         }
643         ty::TyAdt(def, substs) if def.is_enum() => {
644             def.variants.iter()
645                 .filter(|v| !cx.is_variant_uninhabited(v, substs))
646                 .map(|v| Variant(v.did))
647                 .collect()
648         }
649         ty::TyChar if exhaustive_integer_patterns => {
650             let endpoint = |c: char| {
651                 let ty = ty::ParamEnv::empty().and(cx.tcx.types.char);
652                 ty::Const::from_bits(cx.tcx, c as u128, ty)
653             };
654             vec![
655                 // The valid Unicode Scalar Value ranges.
656                 ConstantRange(endpoint('\u{0000}'), endpoint('\u{D7FF}'), RangeEnd::Included),
657                 ConstantRange(endpoint('\u{E000}'), endpoint('\u{10FFFF}'), RangeEnd::Included),
658             ]
659         }
660         ty::TyInt(ity) if exhaustive_integer_patterns => {
661             // FIXME(49937): refactor these bit manipulations into interpret.
662             let bits = Integer::from_attr(cx.tcx, SignedInt(ity)).size().bits() as u128;
663             let min = 1u128 << (bits - 1);
664             let max = (1u128 << (bits - 1)) - 1;
665             let ty = ty::ParamEnv::empty().and(pcx.ty);
666             vec![ConstantRange(ty::Const::from_bits(cx.tcx, min as u128, ty),
667                                ty::Const::from_bits(cx.tcx, max as u128, ty),
668                                RangeEnd::Included)]
669         }
670         ty::TyUint(uty) if exhaustive_integer_patterns => {
671             // FIXME(49937): refactor these bit manipulations into interpret.
672             let bits = Integer::from_attr(cx.tcx, UnsignedInt(uty)).size().bits() as u128;
673             let max = !0u128 >> (128 - bits);
674             let ty = ty::ParamEnv::empty().and(pcx.ty);
675             vec![ConstantRange(ty::Const::from_bits(cx.tcx, 0, ty),
676                                ty::Const::from_bits(cx.tcx, max, ty),
677                                RangeEnd::Included)]
678         }
679         _ => {
680             if cx.is_uninhabited(pcx.ty) {
681                 vec![]
682             } else {
683                 vec![Single]
684             }
685         }
686     };
687     ctors
688 }
689
690 fn max_slice_length<'p, 'a: 'p, 'tcx: 'a, I>(
691     cx: &mut MatchCheckCtxt<'a, 'tcx>,
692     patterns: I) -> u64
693     where I: Iterator<Item=&'p Pattern<'tcx>>
694 {
695     // The exhaustiveness-checking paper does not include any details on
696     // checking variable-length slice patterns. However, they are matched
697     // by an infinite collection of fixed-length array patterns.
698     //
699     // Checking the infinite set directly would take an infinite amount
700     // of time. However, it turns out that for each finite set of
701     // patterns `P`, all sufficiently large array lengths are equivalent:
702     //
703     // Each slice `s` with a "sufficiently-large" length `l ≥ L` that applies
704     // to exactly the subset `Pₜ` of `P` can be transformed to a slice
705     // `sₘ` for each sufficiently-large length `m` that applies to exactly
706     // the same subset of `P`.
707     //
708     // Because of that, each witness for reachability-checking from one
709     // of the sufficiently-large lengths can be transformed to an
710     // equally-valid witness from any other length, so we only have
711     // to check slice lengths from the "minimal sufficiently-large length"
712     // and below.
713     //
714     // Note that the fact that there is a *single* `sₘ` for each `m`
715     // not depending on the specific pattern in `P` is important: if
716     // you look at the pair of patterns
717     //     `[true, ..]`
718     //     `[.., false]`
719     // Then any slice of length ≥1 that matches one of these two
720     // patterns can be trivially turned to a slice of any
721     // other length ≥1 that matches them and vice-versa - for
722     // but the slice from length 2 `[false, true]` that matches neither
723     // of these patterns can't be turned to a slice from length 1 that
724     // matches neither of these patterns, so we have to consider
725     // slices from length 2 there.
726     //
727     // Now, to see that that length exists and find it, observe that slice
728     // patterns are either "fixed-length" patterns (`[_, _, _]`) or
729     // "variable-length" patterns (`[_, .., _]`).
730     //
731     // For fixed-length patterns, all slices with lengths *longer* than
732     // the pattern's length have the same outcome (of not matching), so
733     // as long as `L` is greater than the pattern's length we can pick
734     // any `sₘ` from that length and get the same result.
735     //
736     // For variable-length patterns, the situation is more complicated,
737     // because as seen above the precise value of `sₘ` matters.
738     //
739     // However, for each variable-length pattern `p` with a prefix of length
740     // `plₚ` and suffix of length `slₚ`, only the first `plₚ` and the last
741     // `slₚ` elements are examined.
742     //
743     // Therefore, as long as `L` is positive (to avoid concerns about empty
744     // types), all elements after the maximum prefix length and before
745     // the maximum suffix length are not examined by any variable-length
746     // pattern, and therefore can be added/removed without affecting
747     // them - creating equivalent patterns from any sufficiently-large
748     // length.
749     //
750     // Of course, if fixed-length patterns exist, we must be sure
751     // that our length is large enough to miss them all, so
752     // we can pick `L = max(FIXED_LEN+1 ∪ {max(PREFIX_LEN) + max(SUFFIX_LEN)})`
753     //
754     // for example, with the above pair of patterns, all elements
755     // but the first and last can be added/removed, so any
756     // witness of length ≥2 (say, `[false, false, true]`) can be
757     // turned to a witness from any other length ≥2.
758
759     let mut max_prefix_len = 0;
760     let mut max_suffix_len = 0;
761     let mut max_fixed_len = 0;
762
763     for row in patterns {
764         match *row.kind {
765             PatternKind::Constant { value } => {
766                 if let Some(ptr) = value.to_ptr() {
767                     let is_array_ptr = value.ty
768                         .builtin_deref(true)
769                         .and_then(|t| t.ty.builtin_index())
770                         .map_or(false, |t| t == cx.tcx.types.u8);
771                     if is_array_ptr {
772                         let alloc = cx.tcx.alloc_map.lock().unwrap_memory(ptr.alloc_id);
773                         max_fixed_len = cmp::max(max_fixed_len, alloc.bytes.len() as u64);
774                     }
775                 }
776             }
777             PatternKind::Slice { ref prefix, slice: None, ref suffix } => {
778                 let fixed_len = prefix.len() as u64 + suffix.len() as u64;
779                 max_fixed_len = cmp::max(max_fixed_len, fixed_len);
780             }
781             PatternKind::Slice { ref prefix, slice: Some(_), ref suffix } => {
782                 max_prefix_len = cmp::max(max_prefix_len, prefix.len() as u64);
783                 max_suffix_len = cmp::max(max_suffix_len, suffix.len() as u64);
784             }
785             _ => {}
786         }
787     }
788
789     cmp::max(max_fixed_len + 1, max_prefix_len + max_suffix_len)
790 }
791
792 /// An inclusive interval, used for precise integer exhaustiveness checking.
793 /// `IntRange`s always store a contiguous range. This means that values are
794 /// encoded such that `0` encodes the minimum value for the integer,
795 /// regardless of the signedness.
796 /// For example, the pattern `-128...127i8` is encoded as `0..=255`.
797 /// This makes comparisons and arithmetic on interval endpoints much more
798 /// straightforward. See `signed_bias` for details.
799 struct IntRange<'tcx> {
800     pub range: RangeInclusive<u128>,
801     pub ty: Ty<'tcx>,
802 }
803
804 impl<'tcx> IntRange<'tcx> {
805     fn from_ctor(tcx: TyCtxt<'_, 'tcx, 'tcx>,
806                  ctor: &Constructor<'tcx>)
807                  -> Option<IntRange<'tcx>> {
808         match ctor {
809             ConstantRange(lo, hi, end) => {
810                 assert_eq!(lo.ty, hi.ty);
811                 let ty = lo.ty;
812                 let env_ty = ty::ParamEnv::empty().and(ty);
813                 if let Some(lo) = lo.assert_bits(tcx, env_ty) {
814                     if let Some(hi) = hi.assert_bits(tcx, env_ty) {
815                         // Perform a shift if the underlying types are signed,
816                         // which makes the interval arithmetic simpler.
817                         let bias = IntRange::signed_bias(tcx, ty);
818                         let (lo, hi) = (lo ^ bias, hi ^ bias);
819                         // Make sure the interval is well-formed.
820                         return if lo > hi || lo == hi && *end == RangeEnd::Excluded {
821                             None
822                         } else {
823                             let offset = (*end == RangeEnd::Excluded) as u128;
824                             Some(IntRange { range: lo..=(hi - offset), ty })
825                         };
826                     }
827                 }
828                 None
829             }
830             ConstantValue(val) => {
831                 let ty = val.ty;
832                 if let Some(val) = val.assert_bits(tcx, ty::ParamEnv::empty().and(ty)) {
833                     let bias = IntRange::signed_bias(tcx, ty);
834                     let val = val ^ bias;
835                     Some(IntRange { range: val..=val, ty })
836                 } else {
837                     None
838                 }
839             }
840             Single | Variant(_) | Slice(_) => {
841                 None
842             }
843         }
844     }
845
846     fn from_pat(tcx: TyCtxt<'_, 'tcx, 'tcx>,
847                 pat: &Pattern<'tcx>)
848                 -> Option<IntRange<'tcx>> {
849         Self::from_ctor(tcx, &match pat.kind {
850             box PatternKind::Constant { value } => ConstantValue(value),
851             box PatternKind::Range { lo, hi, end } => ConstantRange(lo, hi, end),
852             _ => return None,
853         })
854     }
855
856     // The return value of `signed_bias` should be XORed with an endpoint to encode/decode it.
857     fn signed_bias(tcx: TyCtxt<'_, 'tcx, 'tcx>, ty: Ty<'tcx>) -> u128 {
858         match ty.sty {
859             ty::TyInt(ity) => {
860                 let bits = Integer::from_attr(tcx, SignedInt(ity)).size().bits() as u128;
861                 1u128 << (bits - 1)
862             }
863             _ => 0
864         }
865     }
866
867     /// Convert a `RangeInclusive` to a `ConstantValue` or inclusive `ConstantRange`.
868     fn range_to_ctor(
869         tcx: TyCtxt<'_, 'tcx, 'tcx>,
870         ty: Ty<'tcx>,
871         r: RangeInclusive<u128>,
872     ) -> Constructor<'tcx> {
873         let bias = IntRange::signed_bias(tcx, ty);
874         let ty = ty::ParamEnv::empty().and(ty);
875         let (lo, hi) = r.into_inner();
876         if lo == hi {
877             ConstantValue(ty::Const::from_bits(tcx, lo ^ bias, ty))
878         } else {
879             ConstantRange(ty::Const::from_bits(tcx, lo ^ bias, ty),
880                           ty::Const::from_bits(tcx, hi ^ bias, ty),
881                           RangeEnd::Included)
882         }
883     }
884
885     /// Given an `IntRange` corresponding to a pattern in a `match` and a collection of
886     /// ranges corresponding to the domain of values of a type (say, an integer), return
887     /// a new collection of ranges corresponding to the original ranges minus the ranges
888     /// covered by the `IntRange`.
889     fn subtract_from(self,
890                      tcx: TyCtxt<'_, 'tcx, 'tcx>,
891                      ranges: Vec<Constructor<'tcx>>)
892                      -> Vec<Constructor<'tcx>> {
893         let ranges = ranges.into_iter().filter_map(|r| {
894             IntRange::from_ctor(tcx, &r).map(|i| i.range)
895         });
896         let mut remaining_ranges = vec![];
897         let ty = self.ty;
898         let (lo, hi) = self.range.into_inner();
899         for subrange in ranges {
900             let (subrange_lo, subrange_hi) = subrange.into_inner();
901             if lo > subrange_hi || subrange_lo > hi  {
902                 // The pattern doesn't intersect with the subrange at all,
903                 // so the subrange remains untouched.
904                 remaining_ranges.push(Self::range_to_ctor(tcx, ty, subrange_lo..=subrange_hi));
905             } else {
906                 if lo > subrange_lo {
907                     // The pattern intersects an upper section of the
908                     // subrange, so a lower section will remain.
909                     remaining_ranges.push(Self::range_to_ctor(tcx, ty, subrange_lo..=(lo - 1)));
910                 }
911                 if hi < subrange_hi {
912                     // The pattern intersects a lower section of the
913                     // subrange, so an upper section will remain.
914                     remaining_ranges.push(Self::range_to_ctor(tcx, ty, (hi + 1)..=subrange_hi));
915                 }
916             }
917         }
918         remaining_ranges
919     }
920
921     fn intersection(&self, other: &Self) -> Option<Self> {
922         let ty = self.ty;
923         let (lo, hi) = (*self.range.start(), *self.range.end());
924         let (other_lo, other_hi) = (*other.range.start(), *other.range.end());
925         if lo <= other_hi && other_lo <= hi {
926             Some(IntRange { range: max(lo, other_lo)..=min(hi, other_hi), ty })
927         } else {
928             None
929         }
930     }
931 }
932
933 // Find those constructors that are not matched by any non-wildcard patterns in the current column.
934 fn compute_missing_ctors<'a, 'tcx: 'a>(
935     tcx: TyCtxt<'a, 'tcx, 'tcx>,
936     all_ctors: &Vec<Constructor<'tcx>>,
937     used_ctors: &Vec<Constructor<'tcx>>,
938 ) -> Vec<Constructor<'tcx>> {
939     let mut missing_ctors = vec![];
940
941     for req_ctor in all_ctors {
942         let mut refined_ctors = vec![req_ctor.clone()];
943         for used_ctor in used_ctors {
944             if used_ctor == req_ctor {
945                 // If a constructor appears in a `match` arm, we can
946                 // eliminate it straight away.
947                 refined_ctors = vec![]
948             } else if tcx.features().exhaustive_integer_patterns {
949                 if let Some(interval) = IntRange::from_ctor(tcx, used_ctor) {
950                     // Refine the required constructors for the type by subtracting
951                     // the range defined by the current constructor pattern.
952                     refined_ctors = interval.subtract_from(tcx, refined_ctors);
953                 }
954             }
955
956             // If the constructor patterns that have been considered so far
957             // already cover the entire range of values, then we the
958             // constructor is not missing, and we can move on to the next one.
959             if refined_ctors.is_empty() {
960                 break;
961             }
962         }
963         // If a constructor has not been matched, then it is missing.
964         // We add `refined_ctors` instead of `req_ctor`, because then we can
965         // provide more detailed error information about precisely which
966         // ranges have been omitted.
967         missing_ctors.extend(refined_ctors);
968     }
969
970     missing_ctors
971 }
972
973 /// Algorithm from http://moscova.inria.fr/~maranget/papers/warn/index.html
974 /// The algorithm from the paper has been modified to correctly handle empty
975 /// types. The changes are:
976 ///   (0) We don't exit early if the pattern matrix has zero rows. We just
977 ///       continue to recurse over columns.
978 ///   (1) all_constructors will only return constructors that are statically
979 ///       possible. eg. it will only return Ok for Result<T, !>
980 ///
981 /// This finds whether a (row) vector `v` of patterns is 'useful' in relation
982 /// to a set of such vectors `m` - this is defined as there being a set of
983 /// inputs that will match `v` but not any of the sets in `m`.
984 ///
985 /// All the patterns at each column of the `matrix ++ v` matrix must
986 /// have the same type, except that wildcard (PatternKind::Wild) patterns
987 /// with type TyErr are also allowed, even if the "type of the column"
988 /// is not TyErr. That is used to represent private fields, as using their
989 /// real type would assert that they are inhabited.
990 ///
991 /// This is used both for reachability checking (if a pattern isn't useful in
992 /// relation to preceding patterns, it is not reachable) and exhaustiveness
993 /// checking (if a wildcard pattern is useful in relation to a matrix, the
994 /// matrix isn't exhaustive).
995 pub fn is_useful<'p, 'a: 'p, 'tcx: 'a>(cx: &mut MatchCheckCtxt<'a, 'tcx>,
996                                        matrix: &Matrix<'p, 'tcx>,
997                                        v: &[&'p Pattern<'tcx>],
998                                        witness: WitnessPreference)
999                                        -> Usefulness<'tcx> {
1000     let &Matrix(ref rows) = matrix;
1001     debug!("is_useful({:#?}, {:#?})", matrix, v);
1002
1003     // The base case. We are pattern-matching on () and the return value is
1004     // based on whether our matrix has a row or not.
1005     // NOTE: This could potentially be optimized by checking rows.is_empty()
1006     // first and then, if v is non-empty, the return value is based on whether
1007     // the type of the tuple we're checking is inhabited or not.
1008     if v.is_empty() {
1009         return if rows.is_empty() {
1010             match witness {
1011                 ConstructWitness => UsefulWithWitness(vec![Witness(vec![])]),
1012                 LeaveOutWitness => Useful,
1013             }
1014         } else {
1015             NotUseful
1016         }
1017     };
1018
1019     assert!(rows.iter().all(|r| r.len() == v.len()));
1020
1021     let pcx = PatternContext {
1022         // TyErr is used to represent the type of wildcard patterns matching
1023         // against inaccessible (private) fields of structs, so that we won't
1024         // be able to observe whether the types of the struct's fields are
1025         // inhabited.
1026         //
1027         // If the field is truly inaccessible, then all the patterns
1028         // matching against it must be wildcard patterns, so its type
1029         // does not matter.
1030         //
1031         // However, if we are matching against non-wildcard patterns, we
1032         // need to know the real type of the field so we can specialize
1033         // against it. This primarily occurs through constants - they
1034         // can include contents for fields that are inaccessible at the
1035         // location of the match. In that case, the field's type is
1036         // inhabited - by the constant - so we can just use it.
1037         //
1038         // FIXME: this might lead to "unstable" behavior with macro hygiene
1039         // introducing uninhabited patterns for inaccessible fields. We
1040         // need to figure out how to model that.
1041         ty: rows.iter().map(|r| r[0].ty).find(|ty| !ty.references_error()).unwrap_or(v[0].ty),
1042         max_slice_length: max_slice_length(cx, rows.iter().map(|r| r[0]).chain(Some(v[0])))
1043     };
1044
1045     debug!("is_useful_expand_first_col: pcx={:#?}, expanding {:#?}", pcx, v[0]);
1046
1047     if let Some(constructors) = pat_constructors(cx, v[0], pcx) {
1048         debug!("is_useful - expanding constructors: {:#?}", constructors);
1049         split_grouped_constructors(cx.tcx, constructors, matrix, v, pcx.ty).into_iter().map(|c|
1050             is_useful_specialized(cx, matrix, v, c.clone(), pcx.ty, witness)
1051         ).find(|result| result.is_useful()).unwrap_or(NotUseful)
1052     } else {
1053         debug!("is_useful - expanding wildcard");
1054
1055         let used_ctors: Vec<Constructor> = rows.iter().flat_map(|row| {
1056             pat_constructors(cx, row[0], pcx).unwrap_or(vec![])
1057         }).collect();
1058         debug!("used_ctors = {:#?}", used_ctors);
1059         // `all_ctors` are all the constructors for the given type, which
1060         // should all be represented (or caught with the wild pattern `_`).
1061         let all_ctors = all_constructors(cx, pcx);
1062         debug!("all_ctors = {:#?}", all_ctors);
1063
1064         // `missing_ctors` is the set of constructors from the same type as the
1065         // first column of `matrix` that are matched only by wildcard patterns
1066         // from the first column.
1067         //
1068         // Therefore, if there is some pattern that is unmatched by `matrix`,
1069         // it will still be unmatched if the first constructor is replaced by
1070         // any of the constructors in `missing_ctors`
1071         //
1072         // However, if our scrutinee is *privately* an empty enum, we
1073         // must treat it as though it had an "unknown" constructor (in
1074         // that case, all other patterns obviously can't be variants)
1075         // to avoid exposing its emptyness. See the `match_privately_empty`
1076         // test for details.
1077         //
1078         // FIXME: currently the only way I know of something can
1079         // be a privately-empty enum is when the exhaustive_patterns
1080         // feature flag is not present, so this is only
1081         // needed for that case.
1082         let missing_ctors = compute_missing_ctors(cx.tcx, &all_ctors, &used_ctors);
1083
1084         let is_privately_empty = all_ctors.is_empty() && !cx.is_uninhabited(pcx.ty);
1085         let is_declared_nonexhaustive = cx.is_non_exhaustive_enum(pcx.ty) && !cx.is_local(pcx.ty);
1086         debug!("missing_ctors={:#?} is_privately_empty={:#?} is_declared_nonexhaustive={:#?}",
1087                missing_ctors, is_privately_empty, is_declared_nonexhaustive);
1088
1089         // For privately empty and non-exhaustive enums, we work as if there were an "extra"
1090         // `_` constructor for the type, so we can never match over all constructors.
1091         let is_non_exhaustive = is_privately_empty || is_declared_nonexhaustive;
1092
1093         if missing_ctors.is_empty() && !is_non_exhaustive {
1094             split_grouped_constructors(cx.tcx, all_ctors, matrix, v, pcx.ty).into_iter().map(|c| {
1095                 is_useful_specialized(cx, matrix, v, c.clone(), pcx.ty, witness)
1096             }).find(|result| result.is_useful()).unwrap_or(NotUseful)
1097         } else {
1098             let matrix = rows.iter().filter_map(|r| {
1099                 if r[0].is_wildcard() {
1100                     Some(r[1..].to_vec())
1101                 } else {
1102                     None
1103                 }
1104             }).collect();
1105             match is_useful(cx, &matrix, &v[1..], witness) {
1106                 UsefulWithWitness(pats) => {
1107                     let cx = &*cx;
1108                     // In this case, there's at least one "free"
1109                     // constructor that is only matched against by
1110                     // wildcard patterns.
1111                     //
1112                     // There are 2 ways we can report a witness here.
1113                     // Commonly, we can report all the "free"
1114                     // constructors as witnesses, e.g. if we have:
1115                     //
1116                     // ```
1117                     //     enum Direction { N, S, E, W }
1118                     //     let Direction::N = ...;
1119                     // ```
1120                     //
1121                     // we can report 3 witnesses: `S`, `E`, and `W`.
1122                     //
1123                     // However, there are 2 cases where we don't want
1124                     // to do this and instead report a single `_` witness:
1125                     //
1126                     // 1) If the user is matching against a non-exhaustive
1127                     // enum, there is no point in enumerating all possible
1128                     // variants, because the user can't actually match
1129                     // against them himself, e.g. in an example like:
1130                     // ```
1131                     //     let err: io::ErrorKind = ...;
1132                     //     match err {
1133                     //         io::ErrorKind::NotFound => {},
1134                     //     }
1135                     // ```
1136                     // we don't want to show every possible IO error,
1137                     // but instead have `_` as the witness (this is
1138                     // actually *required* if the user specified *all*
1139                     // IO errors, but is probably what we want in every
1140                     // case).
1141                     //
1142                     // 2) If the user didn't actually specify a constructor
1143                     // in this arm, e.g. in
1144                     // ```
1145                     //     let x: (Direction, Direction, bool) = ...;
1146                     //     let (_, _, false) = x;
1147                     // ```
1148                     // we don't want to show all 16 possible witnesses
1149                     // `(<direction-1>, <direction-2>, true)` - we are
1150                     // satisfied with `(_, _, true)`. In this case,
1151                     // `used_ctors` is empty.
1152                     let new_witnesses = if is_non_exhaustive || used_ctors.is_empty() {
1153                         // All constructors are unused. Add wild patterns
1154                         // rather than each individual constructor.
1155                         pats.into_iter().map(|mut witness| {
1156                             witness.0.push(Pattern {
1157                                 ty: pcx.ty,
1158                                 span: DUMMY_SP,
1159                                 kind: box PatternKind::Wild,
1160                             });
1161                             witness
1162                         }).collect()
1163                     } else {
1164                         pats.into_iter().flat_map(|witness| {
1165                             missing_ctors.iter().map(move |ctor| {
1166                                 // Extends the witness with a "wild" version of this
1167                                 // constructor, that matches everything that can be built with
1168                                 // it. For example, if `ctor` is a `Constructor::Variant` for
1169                                 // `Option::Some`, this pushes the witness for `Some(_)`.
1170                                 witness.clone().push_wild_constructor(cx, ctor, pcx.ty)
1171                             })
1172                         }).collect()
1173                     };
1174                     UsefulWithWitness(new_witnesses)
1175                 }
1176                 result => result
1177             }
1178         }
1179     }
1180 }
1181
1182 /// A shorthand for the `U(S(c, P), S(c, q))` operation from the paper. I.e. `is_useful` applied
1183 /// to the specialised version of both the pattern matrix `P` and the new pattern `q`.
1184 fn is_useful_specialized<'p, 'a:'p, 'tcx: 'a>(
1185     cx: &mut MatchCheckCtxt<'a, 'tcx>,
1186     &Matrix(ref m): &Matrix<'p, 'tcx>,
1187     v: &[&'p Pattern<'tcx>],
1188     ctor: Constructor<'tcx>,
1189     lty: Ty<'tcx>,
1190     witness: WitnessPreference,
1191 ) -> Usefulness<'tcx> {
1192     debug!("is_useful_specialized({:#?}, {:#?}, {:?})", v, ctor, lty);
1193     let sub_pat_tys = constructor_sub_pattern_tys(cx, &ctor, lty);
1194     let wild_patterns_owned: Vec<_> = sub_pat_tys.iter().map(|ty| {
1195         Pattern {
1196             ty,
1197             span: DUMMY_SP,
1198             kind: box PatternKind::Wild,
1199         }
1200     }).collect();
1201     let wild_patterns: Vec<_> = wild_patterns_owned.iter().collect();
1202     let matrix = Matrix(m.iter().flat_map(|r| {
1203         specialize(cx, &r, &ctor, &wild_patterns)
1204     }).collect());
1205     match specialize(cx, v, &ctor, &wild_patterns) {
1206         Some(v) => match is_useful(cx, &matrix, &v, witness) {
1207             UsefulWithWitness(witnesses) => UsefulWithWitness(
1208                 witnesses.into_iter()
1209                     .map(|witness| witness.apply_constructor(cx, &ctor, lty))
1210                     .collect()
1211             ),
1212             result => result
1213         }
1214         None => NotUseful
1215     }
1216 }
1217
1218 /// Determines the constructors that the given pattern can be specialized to.
1219 ///
1220 /// In most cases, there's only one constructor that a specific pattern
1221 /// represents, such as a specific enum variant or a specific literal value.
1222 /// Slice patterns, however, can match slices of different lengths. For instance,
1223 /// `[a, b, ..tail]` can match a slice of length 2, 3, 4 and so on.
1224 ///
1225 /// Returns `None` in case of a catch-all, which can't be specialized.
1226 fn pat_constructors<'tcx>(cx: &mut MatchCheckCtxt,
1227                           pat: &Pattern<'tcx>,
1228                           pcx: PatternContext)
1229                           -> Option<Vec<Constructor<'tcx>>>
1230 {
1231     match *pat.kind {
1232         PatternKind::Binding { .. } | PatternKind::Wild => None,
1233         PatternKind::Leaf { .. } | PatternKind::Deref { .. } => Some(vec![Single]),
1234         PatternKind::Variant { adt_def, variant_index, .. } => {
1235             Some(vec![Variant(adt_def.variants[variant_index].did)])
1236         }
1237         PatternKind::Constant { value } => Some(vec![ConstantValue(value)]),
1238         PatternKind::Range { lo, hi, end } => Some(vec![ConstantRange(lo, hi, end)]),
1239         PatternKind::Array { .. } => match pcx.ty.sty {
1240             ty::TyArray(_, length) => Some(vec![
1241                 Slice(length.unwrap_usize(cx.tcx))
1242             ]),
1243             _ => span_bug!(pat.span, "bad ty {:?} for array pattern", pcx.ty)
1244         },
1245         PatternKind::Slice { ref prefix, ref slice, ref suffix } => {
1246             let pat_len = prefix.len() as u64 + suffix.len() as u64;
1247             if slice.is_some() {
1248                 Some((pat_len..pcx.max_slice_length+1).map(Slice).collect())
1249             } else {
1250                 Some(vec![Slice(pat_len)])
1251             }
1252         }
1253     }
1254 }
1255
1256 /// This computes the arity of a constructor. The arity of a constructor
1257 /// is how many subpattern patterns of that constructor should be expanded to.
1258 ///
1259 /// For instance, a tuple pattern (_, 42, Some([])) has the arity of 3.
1260 /// A struct pattern's arity is the number of fields it contains, etc.
1261 fn constructor_arity(_cx: &MatchCheckCtxt, ctor: &Constructor, ty: Ty) -> u64 {
1262     debug!("constructor_arity({:#?}, {:?})", ctor, ty);
1263     match ty.sty {
1264         ty::TyTuple(ref fs) => fs.len() as u64,
1265         ty::TySlice(..) | ty::TyArray(..) => match *ctor {
1266             Slice(length) => length,
1267             ConstantValue(_) => 0,
1268             _ => bug!("bad slice pattern {:?} {:?}", ctor, ty)
1269         },
1270         ty::TyRef(..) => 1,
1271         ty::TyAdt(adt, _) => {
1272             adt.variants[ctor.variant_index_for_adt(adt)].fields.len() as u64
1273         }
1274         _ => 0
1275     }
1276 }
1277
1278 /// This computes the types of the sub patterns that a constructor should be
1279 /// expanded to.
1280 ///
1281 /// For instance, a tuple pattern (43u32, 'a') has sub pattern types [u32, char].
1282 fn constructor_sub_pattern_tys<'a, 'tcx: 'a>(cx: &MatchCheckCtxt<'a, 'tcx>,
1283                                              ctor: &Constructor,
1284                                              ty: Ty<'tcx>) -> Vec<Ty<'tcx>>
1285 {
1286     debug!("constructor_sub_pattern_tys({:#?}, {:?})", ctor, ty);
1287     match ty.sty {
1288         ty::TyTuple(ref fs) => fs.into_iter().map(|t| *t).collect(),
1289         ty::TySlice(ty) | ty::TyArray(ty, _) => match *ctor {
1290             Slice(length) => (0..length).map(|_| ty).collect(),
1291             ConstantValue(_) => vec![],
1292             _ => bug!("bad slice pattern {:?} {:?}", ctor, ty)
1293         },
1294         ty::TyRef(_, rty, _) => vec![rty],
1295         ty::TyAdt(adt, substs) => {
1296             if adt.is_box() {
1297                 // Use T as the sub pattern type of Box<T>.
1298                 vec![substs.type_at(0)]
1299             } else {
1300                 adt.variants[ctor.variant_index_for_adt(adt)].fields.iter().map(|field| {
1301                     let is_visible = adt.is_enum()
1302                         || field.vis.is_accessible_from(cx.module, cx.tcx);
1303                     if is_visible {
1304                         field.ty(cx.tcx, substs)
1305                     } else {
1306                         // Treat all non-visible fields as TyErr. They
1307                         // can't appear in any other pattern from
1308                         // this match (because they are private),
1309                         // so their type does not matter - but
1310                         // we don't want to know they are
1311                         // uninhabited.
1312                         cx.tcx.types.err
1313                     }
1314                 }).collect()
1315             }
1316         }
1317         _ => vec![],
1318     }
1319 }
1320
1321 fn slice_pat_covered_by_constructor<'tcx>(
1322     tcx: TyCtxt<'_, 'tcx, '_>,
1323     _span: Span,
1324     ctor: &Constructor,
1325     prefix: &[Pattern<'tcx>],
1326     slice: &Option<Pattern<'tcx>>,
1327     suffix: &[Pattern<'tcx>]
1328 ) -> Result<bool, ErrorReported> {
1329     let data: &[u8] = match *ctor {
1330         ConstantValue(const_val) => {
1331             let val = match const_val.val {
1332                 ConstValue::Unevaluated(..) |
1333                 ConstValue::ByRef(..) => bug!("unexpected ConstValue: {:?}", const_val),
1334                 ConstValue::Scalar(val) | ConstValue::ScalarPair(val, _) => val,
1335             };
1336             if let Ok(ptr) = val.to_ptr() {
1337                 let is_array_ptr = const_val.ty
1338                     .builtin_deref(true)
1339                     .and_then(|t| t.ty.builtin_index())
1340                     .map_or(false, |t| t == tcx.types.u8);
1341                 assert!(is_array_ptr);
1342                 tcx.alloc_map.lock().unwrap_memory(ptr.alloc_id).bytes.as_ref()
1343             } else {
1344                 bug!("unexpected non-ptr ConstantValue")
1345             }
1346         }
1347         _ => bug!()
1348     };
1349
1350     let pat_len = prefix.len() + suffix.len();
1351     if data.len() < pat_len || (slice.is_none() && data.len() > pat_len) {
1352         return Ok(false);
1353     }
1354
1355     for (ch, pat) in
1356         data[..prefix.len()].iter().zip(prefix).chain(
1357             data[data.len()-suffix.len()..].iter().zip(suffix))
1358     {
1359         match pat.kind {
1360             box PatternKind::Constant { value } => {
1361                 let b = value.unwrap_bits(tcx, ty::ParamEnv::empty().and(pat.ty));
1362                 assert_eq!(b as u8 as u128, b);
1363                 if b as u8 != *ch {
1364                     return Ok(false);
1365                 }
1366             }
1367             _ => {}
1368         }
1369     }
1370
1371     Ok(true)
1372 }
1373
1374 // Whether to evaluate a constructor using exhaustive integer matching. This is true if the
1375 // constructor is a range or constant with an integer type.
1376 fn should_treat_range_exhaustively(tcx: TyCtxt<'_, 'tcx, 'tcx>, ctor: &Constructor<'tcx>) -> bool {
1377     if tcx.features().exhaustive_integer_patterns {
1378         if let ConstantValue(value) | ConstantRange(value, _, _) = ctor {
1379             if let ty::TyChar | ty::TyInt(_) | ty::TyUint(_) = value.ty.sty {
1380                 return true;
1381             }
1382         }
1383     }
1384     false
1385 }
1386
1387 /// For exhaustive integer matching, some constructors are grouped within other constructors
1388 /// (namely integer typed values are grouped within ranges). However, when specialising these
1389 /// constructors, we want to be specialising for the underlying constructors (the integers), not
1390 /// the groups (the ranges). Thus we need to split the groups up. Splitting them up naïvely would
1391 /// mean creating a separate constructor for every single value in the range, which is clearly
1392 /// impractical. However, observe that for some ranges of integers, the specialisation will be
1393 /// identical across all values in that range (i.e. there are equivalence classes of ranges of
1394 /// constructors based on their `is_useful_specialised` outcome). These classes are grouped by
1395 /// the patterns that apply to them (both in the matrix `P` and in the new row `p_{m + 1}`). We
1396 /// can split the range whenever the patterns that apply to that range (specifically: the patterns
1397 /// that *intersect* with that range) change.
1398 /// Our solution, therefore, is to split the range constructor into subranges at every single point
1399 /// the group of intersecting patterns changes, which we can compute by converting each pattern to
1400 /// a range and recording its endpoints, then creating subranges between each consecutive pair of
1401 /// endpoints.
1402 /// And voilà! We're testing precisely those ranges that we need to, without any exhaustive matching
1403 /// on actual integers. The nice thing about this is that the number of subranges is linear in the
1404 /// number of rows in the matrix (i.e. the number of cases in the `match` statement), so we don't
1405 /// need to be worried about matching over gargantuan ranges.
1406 fn split_grouped_constructors<'p, 'a: 'p, 'tcx: 'a>(
1407     tcx: TyCtxt<'a, 'tcx, 'tcx>,
1408     ctors: Vec<Constructor<'tcx>>,
1409     &Matrix(ref m): &Matrix<'p, 'tcx>,
1410     p: &[&'p Pattern<'tcx>],
1411     ty: Ty<'tcx>,
1412 ) -> Vec<Constructor<'tcx>> {
1413     let pat = &p[0];
1414
1415     let mut split_ctors = Vec::with_capacity(ctors.len());
1416
1417     for ctor in ctors.into_iter() {
1418         match ctor {
1419             // For now, only ranges may denote groups of "subconstructors", so we only need to
1420             // special-case constant ranges.
1421             ConstantRange(..) if should_treat_range_exhaustively(tcx, &ctor) => {
1422                 // We only care about finding all the subranges within the range of the intersection
1423                 // of the new pattern `p_({m + 1},1)` (here `pat`) and the constructor range.
1424                 // Anything else is irrelevant, because it is guaranteed to result in `NotUseful`,
1425                 // which is the default case anyway, and can be ignored.
1426                 let mut ctor_range = IntRange::from_ctor(tcx, &ctor).unwrap();
1427                 if let Some(pat_range) = IntRange::from_pat(tcx, pat) {
1428                     if let Some(new_range) = ctor_range.intersection(&pat_range) {
1429                         ctor_range = new_range;
1430                     } else {
1431                         // If the intersection between `pat` and the constructor is empty, the
1432                         // entire range is `NotUseful`.
1433                         continue;
1434                     }
1435                 } else {
1436                     match pat.kind {
1437                         box PatternKind::Wild => {
1438                             // A wild pattern matches the entire range of values,
1439                             // so the current values are fine.
1440                         }
1441                         // If the pattern is not a value (i.e. a degenerate range), a range or a
1442                         // wildcard (which stands for the entire range), then it's guaranteed to
1443                         // be `NotUseful`.
1444                         _ => continue,
1445                     }
1446                 }
1447                 // We're going to collect all the endpoints in the new pattern so we can create
1448                 // subranges between them.
1449                 // If there's a single point, we need to identify it as belonging
1450                 // to a length-1 range, so it can be treated as an individual
1451                 // constructor, rather than as an endpoint. To do this, we keep track of which
1452                 // endpoint a point corresponds to. Whenever a point corresponds to both a start
1453                 // and an end, then we create a unit range for it.
1454                 #[derive(PartialEq, Clone, Copy, Debug)]
1455                 enum Endpoint {
1456                     Start,
1457                     End,
1458                     Both,
1459                 };
1460                 let mut points = FxHashMap::default();
1461                 let add_endpoint = |points: &mut FxHashMap<_, _>, x, endpoint| {
1462                     points.entry(x).and_modify(|ex_x| {
1463                         if *ex_x != endpoint {
1464                             *ex_x = Endpoint::Both
1465                         }
1466                     }).or_insert(endpoint);
1467                 };
1468                 let add_endpoints = |points: &mut FxHashMap<_, _>, lo, hi| {
1469                     // Insert the endpoints, taking care to keep track of to
1470                     // which endpoints a point corresponds.
1471                     add_endpoint(points, lo, Endpoint::Start);
1472                     add_endpoint(points, hi, Endpoint::End);
1473                 };
1474                 let (lo, hi) = (*ctor_range.range.start(), *ctor_range.range.end());
1475                 add_endpoints(&mut points, lo, hi);
1476                 // We're going to iterate through every row pattern, adding endpoints in.
1477                 for row in m.iter() {
1478                     if let Some(r) = IntRange::from_pat(tcx, row[0]) {
1479                         // We're only interested in endpoints that lie (at least partially)
1480                         // within the subrange domain.
1481                         if let Some(r) = ctor_range.intersection(&r) {
1482                             let (r_lo, r_hi) = r.range.into_inner();
1483                             add_endpoints(&mut points, r_lo, r_hi);
1484                         }
1485                     }
1486                 }
1487
1488                 // The patterns were iterated in an arbitrary order (i.e. in the order the user
1489                 // wrote them), so we need to make sure our endpoints are sorted.
1490                 let mut points: Vec<(u128, Endpoint)> = points.into_iter().collect();
1491                 points.sort_unstable_by_key(|(x, _)| *x);
1492                 let mut points = points.into_iter();
1493                 let mut a = points.next().unwrap();
1494
1495                 // Iterate through pairs of points, adding the subranges to `split_ctors`.
1496                 // We have to be careful about the orientation of the points as endpoints, to make
1497                 // sure we're enumerating precisely the correct ranges. Too few and the matching is
1498                 // actually incorrect. Too many and our diagnostics are poorer. This involves some
1499                 // case analysis.
1500                 while let Some(b) = points.next() {
1501                     // a < b (strictly)
1502                     if let Endpoint::Both = a.1 {
1503                         split_ctors.push(IntRange::range_to_ctor(tcx, ty, a.0..=a.0));
1504                     }
1505                     let c = match a.1 {
1506                         Endpoint::Start => a.0,
1507                         Endpoint::End | Endpoint::Both => a.0 + 1,
1508                     };
1509                     let d = match b.1 {
1510                         Endpoint::Start | Endpoint::Both => b.0 - 1,
1511                         Endpoint::End => b.0,
1512                     };
1513                     // In some cases, we won't need an intermediate range between two ranges
1514                     // lie immediately adjacent to one another.
1515                     if c <= d {
1516                         split_ctors.push(IntRange::range_to_ctor(tcx, ty, c..=d));
1517                     }
1518
1519                     a = b;
1520                 }
1521             }
1522             // Any other constructor can be used unchanged.
1523             _ => split_ctors.push(ctor),
1524         }
1525     }
1526
1527     split_ctors
1528 }
1529
1530 /// Check whether there exists any shared value in either `ctor` or `pat` by intersecting them.
1531 fn constructor_intersects_pattern<'p, 'a: 'p, 'tcx: 'a>(
1532     tcx: TyCtxt<'a, 'tcx, 'tcx>,
1533     ctor: &Constructor<'tcx>,
1534     pat: &'p Pattern<'tcx>,
1535 ) -> Option<Vec<&'p Pattern<'tcx>>> {
1536     if should_treat_range_exhaustively(tcx, ctor) {
1537         match (IntRange::from_ctor(tcx, ctor), IntRange::from_pat(tcx, pat)) {
1538             (Some(ctor), Some(pat)) => ctor.intersection(&pat).map(|_| vec![]),
1539             _ => None,
1540         }
1541     } else {
1542         // Fallback for non-ranges and ranges that involve floating-point numbers, which are not
1543         // conveniently handled by `IntRange`. For these cases, the constructor may not be a range
1544         // so intersection actually devolves into being covered by the pattern.
1545         match constructor_covered_by_range(tcx, ctor, pat) {
1546             Ok(true) => Some(vec![]),
1547             Ok(false) | Err(ErrorReported) => None,
1548         }
1549     }
1550 }
1551
1552 fn constructor_covered_by_range<'a, 'tcx>(
1553     tcx: TyCtxt<'a, 'tcx, 'tcx>,
1554     ctor: &Constructor<'tcx>,
1555     pat: &Pattern<'tcx>,
1556 ) -> Result<bool, ErrorReported> {
1557     let (from, to, end, ty) = match pat.kind {
1558         box PatternKind::Constant { value } => (value, value, RangeEnd::Included, value.ty),
1559         box PatternKind::Range { lo, hi, end } => (lo, hi, end, lo.ty),
1560         _ => bug!("`constructor_covered_by_range` called with {:?}", pat),
1561     };
1562     trace!("constructor_covered_by_range {:#?}, {:#?}, {:#?}, {}", ctor, from, to, ty);
1563     let cmp_from = |c_from| compare_const_vals(tcx, c_from, from, ty::ParamEnv::empty().and(ty))
1564         .map(|res| res != Ordering::Less);
1565     let cmp_to = |c_to| compare_const_vals(tcx, c_to, to, ty::ParamEnv::empty().and(ty));
1566     macro_rules! some_or_ok {
1567         ($e:expr) => {
1568             match $e {
1569                 Some(to) => to,
1570                 None => return Ok(false), // not char or int
1571             }
1572         };
1573     }
1574     match *ctor {
1575         ConstantValue(value) => {
1576             let to = some_or_ok!(cmp_to(value));
1577             let end = (to == Ordering::Less) ||
1578                       (end == RangeEnd::Included && to == Ordering::Equal);
1579             Ok(some_or_ok!(cmp_from(value)) && end)
1580         },
1581         ConstantRange(from, to, RangeEnd::Included) => {
1582             let to = some_or_ok!(cmp_to(to));
1583             let end = (to == Ordering::Less) ||
1584                       (end == RangeEnd::Included && to == Ordering::Equal);
1585             Ok(some_or_ok!(cmp_from(from)) && end)
1586         },
1587         ConstantRange(from, to, RangeEnd::Excluded) => {
1588             let to = some_or_ok!(cmp_to(to));
1589             let end = (to == Ordering::Less) ||
1590                       (end == RangeEnd::Excluded && to == Ordering::Equal);
1591             Ok(some_or_ok!(cmp_from(from)) && end)
1592         }
1593         Single => Ok(true),
1594         _ => bug!(),
1595     }
1596 }
1597
1598 fn patterns_for_variant<'p, 'a: 'p, 'tcx: 'a>(
1599     subpatterns: &'p [FieldPattern<'tcx>],
1600     wild_patterns: &[&'p Pattern<'tcx>])
1601     -> Vec<&'p Pattern<'tcx>>
1602 {
1603     let mut result = wild_patterns.to_owned();
1604
1605     for subpat in subpatterns {
1606         result[subpat.field.index()] = &subpat.pattern;
1607     }
1608
1609     debug!("patterns_for_variant({:#?}, {:#?}) = {:#?}", subpatterns, wild_patterns, result);
1610     result
1611 }
1612
1613 /// This is the main specialization step. It expands the first pattern in the given row
1614 /// into `arity` patterns based on the constructor. For most patterns, the step is trivial,
1615 /// for instance tuple patterns are flattened and box patterns expand into their inner pattern.
1616 ///
1617 /// OTOH, slice patterns with a subslice pattern (..tail) can be expanded into multiple
1618 /// different patterns.
1619 /// Structure patterns with a partial wild pattern (Foo { a: 42, .. }) have their missing
1620 /// fields filled with wild patterns.
1621 fn specialize<'p, 'a: 'p, 'tcx: 'a>(
1622     cx: &mut MatchCheckCtxt<'a, 'tcx>,
1623     r: &[&'p Pattern<'tcx>],
1624     constructor: &Constructor<'tcx>,
1625     wild_patterns: &[&'p Pattern<'tcx>],
1626 ) -> Option<Vec<&'p Pattern<'tcx>>> {
1627     let pat = &r[0];
1628
1629     let head: Option<Vec<&Pattern>> = match *pat.kind {
1630         PatternKind::Binding { .. } | PatternKind::Wild => {
1631             Some(wild_patterns.to_owned())
1632         }
1633
1634         PatternKind::Variant { adt_def, variant_index, ref subpatterns, .. } => {
1635             let ref variant = adt_def.variants[variant_index];
1636             if *constructor == Variant(variant.did) {
1637                 Some(patterns_for_variant(subpatterns, wild_patterns))
1638             } else {
1639                 None
1640             }
1641         }
1642
1643         PatternKind::Leaf { ref subpatterns } => {
1644             Some(patterns_for_variant(subpatterns, wild_patterns))
1645         }
1646
1647         PatternKind::Deref { ref subpattern } => {
1648             Some(vec![subpattern])
1649         }
1650
1651         PatternKind::Constant { value } => {
1652             match *constructor {
1653                 Slice(..) => {
1654                     if let Some(ptr) = value.to_ptr() {
1655                         let is_array_ptr = value.ty
1656                             .builtin_deref(true)
1657                             .and_then(|t| t.ty.builtin_index())
1658                             .map_or(false, |t| t == cx.tcx.types.u8);
1659                         assert!(is_array_ptr);
1660                         let data_len = cx.tcx
1661                             .alloc_map
1662                             .lock()
1663                             .unwrap_memory(ptr.alloc_id)
1664                             .bytes
1665                             .len();
1666                         if wild_patterns.len() == data_len {
1667                             Some(cx.lower_byte_str_pattern(pat))
1668                         } else {
1669                             None
1670                         }
1671                     } else {
1672                         span_bug!(pat.span,
1673                         "unexpected const-val {:?} with ctor {:?}", value, constructor)
1674                     }
1675                 }
1676                 _ => {
1677                     // If the constructor is a single value, we add a row to the specialised matrix
1678                     // if the pattern is equal to the constructor. If the constructor is a range of
1679                     // values, we add a row to the specialised matrix if the pattern is contained
1680                     // within the constructor. These two cases (for a single value pattern) can be
1681                     // treated as intersection.
1682                     constructor_intersects_pattern(cx.tcx, constructor, pat)
1683                 }
1684             }
1685         }
1686
1687         PatternKind::Range { .. } => {
1688             // If the constructor is a single value, we add a row to the specialised matrix if the
1689             // pattern contains the constructor. If the constructor is a range of values, we add a
1690             // row to the specialised matrix if there exists any value that lies both within the
1691             // pattern and the constructor. These two cases reduce to intersection.
1692             constructor_intersects_pattern(cx.tcx, constructor, pat)
1693         }
1694
1695         PatternKind::Array { ref prefix, ref slice, ref suffix } |
1696         PatternKind::Slice { ref prefix, ref slice, ref suffix } => {
1697             match *constructor {
1698                 Slice(..) => {
1699                     let pat_len = prefix.len() + suffix.len();
1700                     if let Some(slice_count) = wild_patterns.len().checked_sub(pat_len) {
1701                         if slice_count == 0 || slice.is_some() {
1702                             Some(prefix.iter().chain(
1703                                     wild_patterns.iter().map(|p| *p)
1704                                                  .skip(prefix.len())
1705                                                  .take(slice_count)
1706                                                  .chain(suffix.iter())
1707                             ).collect())
1708                         } else {
1709                             None
1710                         }
1711                     } else {
1712                         None
1713                     }
1714                 }
1715                 ConstantValue(..) => {
1716                     match slice_pat_covered_by_constructor(
1717                         cx.tcx, pat.span, constructor, prefix, slice, suffix
1718                             ) {
1719                         Ok(true) => Some(vec![]),
1720                         Ok(false) => None,
1721                         Err(ErrorReported) => None
1722                     }
1723                 }
1724                 _ => span_bug!(pat.span,
1725                     "unexpected ctor {:?} for slice pat", constructor)
1726             }
1727         }
1728     };
1729     debug!("specialize({:#?}, {:#?}) = {:#?}", r[0], wild_patterns, head);
1730
1731     head.map(|mut head| {
1732         head.extend_from_slice(&r[1 ..]);
1733         head
1734     })
1735 }