]> git.lizzy.rs Git - rust.git/blob - src/librustc_const_eval/check_match.rs
Auto merge of #35856 - phimuemue:master, r=brson
[rust.git] / src / librustc_const_eval / check_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 use self::Constructor::*;
12 use self::Usefulness::*;
13 use self::WitnessPreference::*;
14
15 use rustc::dep_graph::DepNode;
16 use rustc::middle::const_val::ConstVal;
17 use ::{eval_const_expr, eval_const_expr_partial, compare_const_vals};
18 use ::{const_expr_to_pat, lookup_const_by_id};
19 use ::EvalHint::ExprTypeChecked;
20 use eval::report_const_eval_err;
21 use rustc::hir::def::*;
22 use rustc::hir::def_id::{DefId};
23 use rustc::middle::expr_use_visitor::{ConsumeMode, Delegate, ExprUseVisitor};
24 use rustc::middle::expr_use_visitor::{LoanCause, MutateMode};
25 use rustc::middle::expr_use_visitor as euv;
26 use rustc::middle::mem_categorization::{cmt};
27 use rustc::hir::pat_util::*;
28 use rustc::traits::Reveal;
29 use rustc::ty::*;
30 use rustc::ty;
31 use std::cmp::Ordering;
32 use std::fmt;
33 use std::iter::{FromIterator, IntoIterator, repeat};
34
35 use rustc::hir;
36 use rustc::hir::{Pat, PatKind};
37 use rustc::hir::intravisit::{self, Visitor, FnKind};
38 use rustc_back::slice;
39
40 use syntax::ast::{self, DUMMY_NODE_ID, NodeId};
41 use syntax::codemap::Spanned;
42 use syntax_pos::{Span, DUMMY_SP};
43 use rustc::hir::fold::{Folder, noop_fold_pat};
44 use rustc::hir::print::pat_to_string;
45 use syntax::ptr::P;
46 use rustc::util::common::ErrorReported;
47 use rustc::util::nodemap::FnvHashMap;
48
49 pub const DUMMY_WILD_PAT: &'static Pat = &Pat {
50     id: DUMMY_NODE_ID,
51     node: PatKind::Wild,
52     span: DUMMY_SP
53 };
54
55 struct Matrix<'a, 'tcx>(Vec<Vec<(&'a Pat, Option<Ty<'tcx>>)>>);
56
57 /// Pretty-printer for matrices of patterns, example:
58 /// ++++++++++++++++++++++++++
59 /// + _     + []             +
60 /// ++++++++++++++++++++++++++
61 /// + true  + [First]        +
62 /// ++++++++++++++++++++++++++
63 /// + true  + [Second(true)] +
64 /// ++++++++++++++++++++++++++
65 /// + false + [_]            +
66 /// ++++++++++++++++++++++++++
67 /// + _     + [_, _, ..tail] +
68 /// ++++++++++++++++++++++++++
69 impl<'a, 'tcx> fmt::Debug for Matrix<'a, 'tcx> {
70     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
71         write!(f, "\n")?;
72
73         let &Matrix(ref m) = self;
74         let pretty_printed_matrix: Vec<Vec<String>> = m.iter().map(|row| {
75             row.iter()
76                .map(|&(pat,ty)| format!("{}: {:?}", pat_to_string(&pat), ty))
77                .collect::<Vec<String>>()
78         }).collect();
79
80         let column_count = m.iter().map(|row| row.len()).max().unwrap_or(0);
81         assert!(m.iter().all(|row| row.len() == column_count));
82         let column_widths: Vec<usize> = (0..column_count).map(|col| {
83             pretty_printed_matrix.iter().map(|row| row[col].len()).max().unwrap_or(0)
84         }).collect();
85
86         let total_width = column_widths.iter().cloned().sum::<usize>() + column_count * 3 + 1;
87         let br = repeat('+').take(total_width).collect::<String>();
88         write!(f, "{}\n", br)?;
89         for row in pretty_printed_matrix {
90             write!(f, "+")?;
91             for (column, pat_str) in row.into_iter().enumerate() {
92                 write!(f, " ")?;
93                 write!(f, "{:1$}", pat_str, column_widths[column])?;
94                 write!(f, " +")?;
95             }
96             write!(f, "\n")?;
97             write!(f, "{}\n", br)?;
98         }
99         Ok(())
100     }
101 }
102
103 impl<'a, 'tcx> FromIterator<Vec<(&'a Pat, Option<Ty<'tcx>>)>> for Matrix<'a, 'tcx> {
104     fn from_iter<T: IntoIterator<Item=Vec<(&'a Pat, Option<Ty<'tcx>>)>>>(iter: T)
105                                                                          -> Self
106     {
107         Matrix(iter.into_iter().collect())
108     }
109 }
110
111 //NOTE: appears to be the only place other then InferCtxt to contain a ParamEnv
112 pub struct MatchCheckCtxt<'a, 'tcx: 'a> {
113     pub tcx: TyCtxt<'a, 'tcx, 'tcx>,
114     pub param_env: ParameterEnvironment<'tcx>,
115 }
116
117 #[derive(Clone, Debug, PartialEq)]
118 pub enum Constructor {
119     /// The constructor of all patterns that don't vary by constructor,
120     /// e.g. struct patterns and fixed-length arrays.
121     Single,
122     /// Enum variants.
123     Variant(DefId),
124     /// Literal values.
125     ConstantValue(ConstVal),
126     /// Ranges of literal values (2..5).
127     ConstantRange(ConstVal, ConstVal),
128     /// Array patterns of length n.
129     Slice(usize),
130     /// Array patterns with a subslice.
131     SliceWithSubslice(usize, usize)
132 }
133
134 #[derive(Clone, PartialEq)]
135 enum Usefulness {
136     Useful,
137     UsefulWithWitness(Vec<P<Pat>>),
138     NotUseful
139 }
140
141 #[derive(Copy, Clone)]
142 enum WitnessPreference {
143     ConstructWitness,
144     LeaveOutWitness
145 }
146
147 impl<'a, 'tcx, 'v> Visitor<'v> for MatchCheckCtxt<'a, 'tcx> {
148     fn visit_expr(&mut self, ex: &hir::Expr) {
149         check_expr(self, ex);
150     }
151     fn visit_local(&mut self, l: &hir::Local) {
152         check_local(self, l);
153     }
154     fn visit_fn(&mut self, fk: FnKind<'v>, fd: &'v hir::FnDecl,
155                 b: &'v hir::Block, s: Span, n: NodeId) {
156         check_fn(self, fk, fd, b, s, n);
157     }
158 }
159
160 pub fn check_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) {
161     tcx.visit_all_items_in_krate(DepNode::MatchCheck, &mut MatchCheckCtxt {
162         tcx: tcx,
163         param_env: tcx.empty_parameter_environment(),
164     });
165     tcx.sess.abort_if_errors();
166 }
167
168 fn check_expr(cx: &mut MatchCheckCtxt, ex: &hir::Expr) {
169     intravisit::walk_expr(cx, ex);
170     match ex.node {
171         hir::ExprMatch(ref scrut, ref arms, source) => {
172             for arm in arms {
173                 // First, check legality of move bindings.
174                 check_legality_of_move_bindings(cx,
175                                                 arm.guard.is_some(),
176                                                 &arm.pats);
177
178                 // Second, if there is a guard on each arm, make sure it isn't
179                 // assigning or borrowing anything mutably.
180                 if let Some(ref guard) = arm.guard {
181                     check_for_mutation_in_guard(cx, &guard);
182                 }
183             }
184
185             let mut static_inliner = StaticInliner::new(cx.tcx, None);
186             let inlined_arms = arms.iter().map(|arm| {
187                 (arm.pats.iter().map(|pat| {
188                     static_inliner.fold_pat((*pat).clone())
189                 }).collect(), arm.guard.as_ref().map(|e| &**e))
190             }).collect::<Vec<(Vec<P<Pat>>, Option<&hir::Expr>)>>();
191
192             // Bail out early if inlining failed.
193             if static_inliner.failed {
194                 return;
195             }
196
197             for pat in inlined_arms
198                 .iter()
199                 .flat_map(|&(ref pats, _)| pats) {
200                 // Third, check legality of move bindings.
201                 check_legality_of_bindings_in_at_patterns(cx, &pat);
202
203                 // Fourth, check if there are any references to NaN that we should warn about.
204                 check_for_static_nan(cx, &pat);
205
206                 // Fifth, check if for any of the patterns that match an enumerated type
207                 // are bindings with the same name as one of the variants of said type.
208                 check_for_bindings_named_the_same_as_variants(cx, &pat);
209             }
210
211             // Fourth, check for unreachable arms.
212             check_arms(cx, &inlined_arms[..], source);
213
214             // Finally, check if the whole match expression is exhaustive.
215             // Check for empty enum, because is_useful only works on inhabited types.
216             let pat_ty = cx.tcx.node_id_to_type(scrut.id);
217             if inlined_arms.is_empty() {
218                 if !pat_ty.is_uninhabited(cx.tcx) {
219                     // We know the type is inhabited, so this must be wrong
220                     let mut err = struct_span_err!(cx.tcx.sess, ex.span, E0002,
221                                                    "non-exhaustive patterns: type {} is non-empty",
222                                                    pat_ty);
223                     span_help!(&mut err, ex.span,
224                         "Please ensure that all possible cases are being handled; \
225                          possibly adding wildcards or more match arms.");
226                     err.emit();
227                 }
228                 // If the type *is* uninhabited, it's vacuously exhaustive
229                 return;
230             }
231
232             let matrix: Matrix = inlined_arms
233                 .iter()
234                 .filter(|&&(_, guard)| guard.is_none())
235                 .flat_map(|arm| &arm.0)
236                 .map(|pat| vec![wrap_pat(cx, &pat)])
237                 .collect();
238             check_exhaustive(cx, scrut.span, &matrix, source);
239         },
240         _ => ()
241     }
242 }
243
244 fn check_for_bindings_named_the_same_as_variants(cx: &MatchCheckCtxt, pat: &Pat) {
245     pat.walk(|p| {
246         if let PatKind::Binding(hir::BindByValue(hir::MutImmutable), name, None) = p.node {
247             let pat_ty = cx.tcx.pat_ty(p);
248             if let ty::TyEnum(edef, _) = pat_ty.sty {
249                 if let Def::Local(..) = cx.tcx.expect_def(p.id) {
250                     if edef.variants.iter().any(|variant| {
251                         variant.name == name.node && variant.kind == VariantKind::Unit
252                     }) {
253                         let ty_path = cx.tcx.item_path_str(edef.did);
254                         let mut err = struct_span_warn!(cx.tcx.sess, p.span, E0170,
255                             "pattern binding `{}` is named the same as one \
256                              of the variants of the type `{}`",
257                             name.node, ty_path);
258                         help!(err,
259                             "if you meant to match on a variant, \
260                              consider making the path in the pattern qualified: `{}::{}`",
261                             ty_path, name.node);
262                         err.emit();
263                     }
264                 }
265             }
266         }
267         true
268     });
269 }
270
271 // Check that we do not match against a static NaN (#6804)
272 fn check_for_static_nan(cx: &MatchCheckCtxt, pat: &Pat) {
273     pat.walk(|p| {
274         if let PatKind::Lit(ref expr) = p.node {
275             match eval_const_expr_partial(cx.tcx, &expr, ExprTypeChecked, None) {
276                 Ok(ConstVal::Float(f)) if f.is_nan() => {
277                     span_warn!(cx.tcx.sess, p.span, E0003,
278                                "unmatchable NaN in pattern, \
279                                 use the is_nan method in a guard instead");
280                 }
281                 Ok(_) => {}
282
283                 Err(err) => {
284                     report_const_eval_err(cx.tcx, &err, p.span, "pattern").emit();
285                 }
286             }
287         }
288         true
289     });
290 }
291
292 // Check for unreachable patterns
293 fn check_arms(cx: &MatchCheckCtxt,
294               arms: &[(Vec<P<Pat>>, Option<&hir::Expr>)],
295               source: hir::MatchSource) {
296     let mut seen = Matrix(vec![]);
297     let mut printed_if_let_err = false;
298     for &(ref pats, guard) in arms {
299         for pat in pats {
300             let v = vec![wrap_pat(cx, &pat)];
301
302             match is_useful(cx, &seen, &v[..], LeaveOutWitness) {
303                 NotUseful => {
304                     match source {
305                         hir::MatchSource::IfLetDesugar { .. } => {
306                             if printed_if_let_err {
307                                 // we already printed an irrefutable if-let pattern error.
308                                 // We don't want two, that's just confusing.
309                             } else {
310                                 // find the first arm pattern so we can use its span
311                                 let &(ref first_arm_pats, _) = &arms[0];
312                                 let first_pat = &first_arm_pats[0];
313                                 let span = first_pat.span;
314                                 struct_span_err!(cx.tcx.sess, span, E0162,
315                                                 "irrefutable if-let pattern")
316                                     .span_label(span, &format!("irrefutable pattern"))
317                                     .emit();
318                                 printed_if_let_err = true;
319                             }
320                         },
321
322                         hir::MatchSource::WhileLetDesugar => {
323                             // find the first arm pattern so we can use its span
324                             let &(ref first_arm_pats, _) = &arms[0];
325                             let first_pat = &first_arm_pats[0];
326                             let span = first_pat.span;
327                             struct_span_err!(cx.tcx.sess, span, E0165,
328                                              "irrefutable while-let pattern")
329                                 .span_label(span, &format!("irrefutable pattern"))
330                                 .emit();
331                         },
332
333                         hir::MatchSource::ForLoopDesugar => {
334                             // this is a bug, because on `match iter.next()` we cover
335                             // `Some(<head>)` and `None`. It's impossible to have an unreachable
336                             // pattern
337                             // (see libsyntax/ext/expand.rs for the full expansion of a for loop)
338                             span_bug!(pat.span, "unreachable for-loop pattern")
339                         },
340
341                         hir::MatchSource::Normal => {
342                             let mut err = struct_span_err!(cx.tcx.sess, pat.span, E0001,
343                                                            "unreachable pattern");
344                             err.span_label(pat.span, &format!("this is an unreachable pattern"));
345                             // if we had a catchall pattern, hint at that
346                             for row in &seen.0 {
347                                 if pat_is_catchall(&cx.tcx.def_map.borrow(), row[0].0) {
348                                     span_note!(err, row[0].0.span,
349                                                "this pattern matches any value");
350                                 }
351                             }
352                             err.emit();
353                         },
354
355                         hir::MatchSource::TryDesugar => {
356                             span_bug!(pat.span, "unreachable try pattern")
357                         },
358                     }
359                 }
360                 Useful => (),
361                 UsefulWithWitness(_) => bug!()
362             }
363             if guard.is_none() {
364                 let Matrix(mut rows) = seen;
365                 rows.push(v);
366                 seen = Matrix(rows);
367             }
368         }
369     }
370 }
371
372 /// Checks for common cases of "catchall" patterns that may not be intended as such.
373 fn pat_is_catchall(dm: &DefMap, p: &Pat) -> bool {
374     match p.node {
375         PatKind::Binding(_, _, None) => true,
376         PatKind::Binding(_, _, Some(ref s)) => pat_is_catchall(dm, &s),
377         PatKind::Ref(ref s, _) => pat_is_catchall(dm, &s),
378         PatKind::Tuple(ref v, _) => v.iter().all(|p| pat_is_catchall(dm, &p)),
379         _ => false
380     }
381 }
382
383 fn raw_pat(p: &Pat) -> &Pat {
384     match p.node {
385         PatKind::Binding(_, _, Some(ref s)) => raw_pat(&s),
386         _ => p
387     }
388 }
389
390 fn check_exhaustive<'a, 'tcx>(cx: &MatchCheckCtxt<'a, 'tcx>,
391                               sp: Span,
392                               matrix: &Matrix<'a, 'tcx>,
393                               source: hir::MatchSource) {
394     match is_useful(cx, matrix, &[(DUMMY_WILD_PAT, None)], ConstructWitness) {
395         UsefulWithWitness(pats) => {
396             let witnesses = if pats.is_empty() {
397                 vec![DUMMY_WILD_PAT]
398             } else {
399                 pats.iter().map(|w| &**w).collect()
400             };
401             match source {
402                 hir::MatchSource::ForLoopDesugar => {
403                     // `witnesses[0]` has the form `Some(<head>)`, peel off the `Some`
404                     let witness = match witnesses[0].node {
405                         PatKind::TupleStruct(_, ref pats, _) => match &pats[..] {
406                             &[ref pat] => &**pat,
407                             _ => bug!(),
408                         },
409                         _ => bug!(),
410                     };
411                     span_err!(cx.tcx.sess, sp, E0297,
412                         "refutable pattern in `for` loop binding: \
413                                 `{}` not covered",
414                                 pat_to_string(witness));
415                 },
416                 _ => {
417                     let pattern_strings: Vec<_> = witnesses.iter().map(|w| {
418                         pat_to_string(w)
419                     }).collect();
420                     const LIMIT: usize = 3;
421                     let joined_patterns = match pattern_strings.len() {
422                         0 => bug!(),
423                         1 => format!("`{}`", pattern_strings[0]),
424                         2...LIMIT => {
425                             let (tail, head) = pattern_strings.split_last().unwrap();
426                             format!("`{}`", head.join("`, `") + "` and `" + tail)
427                         },
428                         _ => {
429                             let (head, tail) = pattern_strings.split_at(LIMIT);
430                             format!("`{}` and {} more", head.join("`, `"), tail.len())
431                         }
432                     };
433
434                     let label_text = match pattern_strings.len(){
435                         1 => format!("pattern {} not covered", joined_patterns),
436                         _ => format!("patterns {} not covered", joined_patterns)
437                     };
438                     struct_span_err!(cx.tcx.sess, sp, E0004,
439                         "non-exhaustive patterns: {} not covered",
440                         joined_patterns
441                     ).span_label(sp, &label_text).emit();
442                 },
443             }
444         }
445         NotUseful => {
446             // This is good, wildcard pattern isn't reachable
447         },
448         _ => bug!()
449     }
450 }
451
452 fn const_val_to_expr(value: &ConstVal) -> P<hir::Expr> {
453     let node = match value {
454         &ConstVal::Bool(b) => ast::LitKind::Bool(b),
455         _ => bug!()
456     };
457     P(hir::Expr {
458         id: 0,
459         node: hir::ExprLit(P(Spanned { node: node, span: DUMMY_SP })),
460         span: DUMMY_SP,
461         attrs: ast::ThinVec::new(),
462     })
463 }
464
465 pub struct StaticInliner<'a, 'tcx: 'a> {
466     pub tcx: TyCtxt<'a, 'tcx, 'tcx>,
467     pub failed: bool,
468     pub renaming_map: Option<&'a mut FnvHashMap<(NodeId, Span), NodeId>>,
469 }
470
471 impl<'a, 'tcx> StaticInliner<'a, 'tcx> {
472     pub fn new<'b>(tcx: TyCtxt<'b, 'tcx, 'tcx>,
473                    renaming_map: Option<&'b mut FnvHashMap<(NodeId, Span), NodeId>>)
474                    -> StaticInliner<'b, 'tcx> {
475         StaticInliner {
476             tcx: tcx,
477             failed: false,
478             renaming_map: renaming_map
479         }
480     }
481 }
482
483 struct RenamingRecorder<'map> {
484     substituted_node_id: NodeId,
485     origin_span: Span,
486     renaming_map: &'map mut FnvHashMap<(NodeId, Span), NodeId>
487 }
488
489 impl<'v, 'map> Visitor<'v> for RenamingRecorder<'map> {
490     fn visit_id(&mut self, node_id: NodeId) {
491         let key = (node_id, self.origin_span);
492         self.renaming_map.insert(key, self.substituted_node_id);
493     }
494 }
495
496 impl<'a, 'tcx> Folder for StaticInliner<'a, 'tcx> {
497     fn fold_pat(&mut self, pat: P<Pat>) -> P<Pat> {
498         return match pat.node {
499             PatKind::Path(..) => {
500                 match self.tcx.expect_def(pat.id) {
501                     Def::AssociatedConst(did) | Def::Const(did) => {
502                         let substs = Some(self.tcx.node_id_item_substs(pat.id).substs);
503                         if let Some((const_expr, _)) = lookup_const_by_id(self.tcx, did, substs) {
504                             match const_expr_to_pat(self.tcx, const_expr, pat.id, pat.span) {
505                                 Ok(new_pat) => {
506                                     if let Some(ref mut map) = self.renaming_map {
507                                         // Record any renamings we do here
508                                         record_renamings(const_expr, &pat, map);
509                                     }
510                                     new_pat
511                                 }
512                                 Err(def_id) => {
513                                     self.failed = true;
514                                     self.tcx.sess.span_err(
515                                         pat.span,
516                                         &format!("constants of the type `{}` \
517                                                   cannot be used in patterns",
518                                                  self.tcx.item_path_str(def_id)));
519                                     pat
520                                 }
521                             }
522                         } else {
523                             self.failed = true;
524                             span_err!(self.tcx.sess, pat.span, E0158,
525                                 "statics cannot be referenced in patterns");
526                             pat
527                         }
528                     }
529                     _ => noop_fold_pat(pat, self)
530                 }
531             }
532             _ => noop_fold_pat(pat, self)
533         };
534
535         fn record_renamings(const_expr: &hir::Expr,
536                             substituted_pat: &hir::Pat,
537                             renaming_map: &mut FnvHashMap<(NodeId, Span), NodeId>) {
538             let mut renaming_recorder = RenamingRecorder {
539                 substituted_node_id: substituted_pat.id,
540                 origin_span: substituted_pat.span,
541                 renaming_map: renaming_map,
542             };
543
544             renaming_recorder.visit_expr(const_expr);
545         }
546     }
547 }
548
549 /// Constructs a partial witness for a pattern given a list of
550 /// patterns expanded by the specialization step.
551 ///
552 /// When a pattern P is discovered to be useful, this function is used bottom-up
553 /// to reconstruct a complete witness, e.g. a pattern P' that covers a subset
554 /// of values, V, where each value in that set is not covered by any previously
555 /// used patterns and is covered by the pattern P'. Examples:
556 ///
557 /// left_ty: tuple of 3 elements
558 /// pats: [10, 20, _]           => (10, 20, _)
559 ///
560 /// left_ty: struct X { a: (bool, &'static str), b: usize}
561 /// pats: [(false, "foo"), 42]  => X { a: (false, "foo"), b: 42 }
562 fn construct_witness<'a,'tcx>(cx: &MatchCheckCtxt<'a,'tcx>, ctor: &Constructor,
563                               pats: Vec<&Pat>, left_ty: Ty<'tcx>) -> P<Pat> {
564     let pats_len = pats.len();
565     let mut pats = pats.into_iter().map(|p| P((*p).clone()));
566     let pat = match left_ty.sty {
567         ty::TyTuple(..) => PatKind::Tuple(pats.collect(), None),
568
569         ty::TyEnum(adt, _) | ty::TyStruct(adt, _)  => {
570             let v = ctor.variant_for_adt(adt);
571             match v.kind {
572                 VariantKind::Struct => {
573                     let field_pats: hir::HirVec<_> = v.fields.iter()
574                         .zip(pats)
575                         .filter(|&(_, ref pat)| pat.node != PatKind::Wild)
576                         .map(|(field, pat)| Spanned {
577                             span: DUMMY_SP,
578                             node: hir::FieldPat {
579                                 name: field.name,
580                                 pat: pat,
581                                 is_shorthand: false,
582                             }
583                         }).collect();
584                     let has_more_fields = field_pats.len() < pats_len;
585                     PatKind::Struct(def_to_path(cx.tcx, v.did), field_pats, has_more_fields)
586                 }
587                 VariantKind::Tuple => {
588                     PatKind::TupleStruct(def_to_path(cx.tcx, v.did), pats.collect(), None)
589                 }
590                 VariantKind::Unit => {
591                     PatKind::Path(None, def_to_path(cx.tcx, v.did))
592                 }
593             }
594         }
595
596         ty::TyRef(_, ty::TypeAndMut { mutbl, .. }) => {
597             assert_eq!(pats_len, 1);
598             PatKind::Ref(pats.nth(0).unwrap(), mutbl)
599         }
600
601         ty::TySlice(_) => match ctor {
602             &Slice(n) => {
603                 assert_eq!(pats_len, n);
604                 PatKind::Vec(pats.collect(), None, hir::HirVec::new())
605             },
606             _ => unreachable!()
607         },
608
609         ty::TyArray(_, len) => {
610             assert_eq!(pats_len, len);
611             PatKind::Vec(pats.collect(), None, hir::HirVec::new())
612         }
613
614         _ => {
615             match *ctor {
616                 ConstantValue(ref v) => PatKind::Lit(const_val_to_expr(v)),
617                 _ => PatKind::Wild,
618             }
619         }
620     };
621
622     P(hir::Pat {
623         id: 0,
624         node: pat,
625         span: DUMMY_SP
626     })
627 }
628
629 impl Constructor {
630     fn variant_for_adt<'tcx, 'container, 'a>(&self,
631                                              adt: &'a ty::AdtDefData<'tcx, 'container>)
632                                              -> &'a VariantDefData<'tcx, 'container> {
633         match self {
634             &Variant(vid) => adt.variant_with_id(vid),
635             _ => adt.struct_variant()
636         }
637     }
638 }
639
640 fn missing_constructors(cx: &MatchCheckCtxt, &Matrix(ref rows): &Matrix,
641                        left_ty: Ty, max_slice_length: usize) -> Vec<Constructor> {
642     let used_constructors: Vec<Constructor> = rows.iter()
643         .flat_map(|row| pat_constructors(cx, row[0].0, left_ty, max_slice_length))
644         .collect();
645     all_constructors(cx, left_ty, max_slice_length)
646         .into_iter()
647         .filter(|c| !used_constructors.contains(c))
648         .collect()
649 }
650
651 /// This determines the set of all possible constructors of a pattern matching
652 /// values of type `left_ty`. For vectors, this would normally be an infinite set
653 /// but is instead bounded by the maximum fixed length of slice patterns in
654 /// the column of patterns being analyzed.
655 fn all_constructors(_cx: &MatchCheckCtxt, left_ty: Ty,
656                     max_slice_length: usize) -> Vec<Constructor> {
657     match left_ty.sty {
658         ty::TyBool =>
659             [true, false].iter().map(|b| ConstantValue(ConstVal::Bool(*b))).collect(),
660         ty::TySlice(_) =>
661             (0..max_slice_length+1).map(|length| Slice(length)).collect(),
662         ty::TyEnum(def, _) => def.variants.iter().map(|v| Variant(v.did)).collect(),
663         _ => vec![Single]
664     }
665 }
666
667 // Algorithm from http://moscova.inria.fr/~maranget/papers/warn/index.html
668 //
669 // Whether a vector `v` of patterns is 'useful' in relation to a set of such
670 // vectors `m` is defined as there being a set of inputs that will match `v`
671 // but not any of the sets in `m`.
672 //
673 // This is used both for reachability checking (if a pattern isn't useful in
674 // relation to preceding patterns, it is not reachable) and exhaustiveness
675 // checking (if a wildcard pattern is useful in relation to a matrix, the
676 // matrix isn't exhaustive).
677
678 // Note: is_useful doesn't work on empty types, as the paper notes.
679 // So it assumes that v is non-empty.
680 fn is_useful<'a, 'tcx>(cx: &MatchCheckCtxt<'a, 'tcx>,
681                        matrix: &Matrix<'a, 'tcx>,
682                        v: &[(&Pat, Option<Ty<'tcx>>)],
683                        witness: WitnessPreference)
684                        -> Usefulness {
685     let &Matrix(ref rows) = matrix;
686     debug!("is_useful({:?}, {:?})", matrix, v);
687     if rows.is_empty() {
688         return match witness {
689             ConstructWitness => UsefulWithWitness(vec!()),
690             LeaveOutWitness => Useful
691         };
692     }
693     if rows[0].is_empty() {
694         return NotUseful;
695     }
696     assert!(rows.iter().all(|r| r.len() == v.len()));
697     let left_ty = match rows.iter().filter_map(|r| r[0].1).next().or_else(|| v[0].1) {
698         Some(ty) => ty,
699         None => {
700             // all patterns are wildcards - we can pick any type we want
701             cx.tcx.types.bool
702         }
703     };
704
705     let max_slice_length = rows.iter().filter_map(|row| match row[0].0.node {
706         PatKind::Vec(ref before, _, ref after) => Some(before.len() + after.len()),
707         _ => None
708     }).max().map_or(0, |v| v + 1);
709
710     let constructors = pat_constructors(cx, v[0].0, left_ty, max_slice_length);
711     debug!("is_useful - pat_constructors = {:?} left_ty = {:?}", constructors,
712            left_ty);
713     if constructors.is_empty() {
714         let constructors = missing_constructors(cx, matrix, left_ty, max_slice_length);
715         debug!("is_useful - missing_constructors = {:?}", constructors);
716         if constructors.is_empty() {
717             all_constructors(cx, left_ty, max_slice_length).into_iter().map(|c| {
718                 match is_useful_specialized(cx, matrix, v, c.clone(), left_ty, witness) {
719                     UsefulWithWitness(pats) => UsefulWithWitness({
720                         let arity = constructor_arity(cx, &c, left_ty);
721                         let mut result = {
722                             let pat_slice = &pats[..];
723                             let subpats: Vec<_> = (0..arity).map(|i| {
724                                 pat_slice.get(i).map_or(DUMMY_WILD_PAT, |p| &**p)
725                             }).collect();
726                             vec![construct_witness(cx, &c, subpats, left_ty)]
727                         };
728                         result.extend(pats.into_iter().skip(arity));
729                         result
730                     }),
731                     result => result
732                 }
733             }).find(|result| result != &NotUseful).unwrap_or(NotUseful)
734         } else {
735             let matrix = rows.iter().filter_map(|r| {
736                 match raw_pat(r[0].0).node {
737                     PatKind::Binding(..) | PatKind::Wild => Some(r[1..].to_vec()),
738                     _ => None,
739                 }
740             }).collect();
741             match is_useful(cx, &matrix, &v[1..], witness) {
742                 UsefulWithWitness(pats) => {
743                     let mut new_pats: Vec<_> = constructors.into_iter().map(|constructor| {
744                         let arity = constructor_arity(cx, &constructor, left_ty);
745                         let wild_pats = vec![DUMMY_WILD_PAT; arity];
746                         construct_witness(cx, &constructor, wild_pats, left_ty)
747                     }).collect();
748                     new_pats.extend(pats);
749                     UsefulWithWitness(new_pats)
750                 },
751                 result => result
752             }
753         }
754     } else {
755         constructors.into_iter().map(|c|
756             is_useful_specialized(cx, matrix, v, c.clone(), left_ty, witness)
757         ).find(|result| result != &NotUseful).unwrap_or(NotUseful)
758     }
759 }
760
761 fn is_useful_specialized<'a, 'tcx>(
762     cx: &MatchCheckCtxt<'a, 'tcx>,
763     &Matrix(ref m): &Matrix<'a, 'tcx>,
764     v: &[(&Pat, Option<Ty<'tcx>>)],
765     ctor: Constructor,
766     lty: Ty<'tcx>,
767     witness: WitnessPreference) -> Usefulness
768 {
769     let arity = constructor_arity(cx, &ctor, lty);
770     let matrix = Matrix(m.iter().filter_map(|r| {
771         specialize(cx, &r[..], &ctor, 0, arity)
772     }).collect());
773     match specialize(cx, v, &ctor, 0, arity) {
774         Some(v) => is_useful(cx, &matrix, &v[..], witness),
775         None => NotUseful
776     }
777 }
778
779 /// Determines the constructors that the given pattern can be specialized to.
780 ///
781 /// In most cases, there's only one constructor that a specific pattern
782 /// represents, such as a specific enum variant or a specific literal value.
783 /// Slice patterns, however, can match slices of different lengths. For instance,
784 /// `[a, b, ..tail]` can match a slice of length 2, 3, 4 and so on.
785 ///
786 /// On the other hand, a wild pattern and an identifier pattern cannot be
787 /// specialized in any way.
788 fn pat_constructors(cx: &MatchCheckCtxt, p: &Pat,
789                     left_ty: Ty, max_slice_length: usize) -> Vec<Constructor> {
790     let pat = raw_pat(p);
791     match pat.node {
792         PatKind::Struct(..) | PatKind::TupleStruct(..) | PatKind::Path(..) =>
793             match cx.tcx.expect_def(pat.id) {
794                 Def::Variant(_, id) => vec![Variant(id)],
795                 Def::Struct(..) | Def::TyAlias(..) | Def::AssociatedTy(..) => vec![Single],
796                 Def::Const(..) | Def::AssociatedConst(..) =>
797                     span_bug!(pat.span, "const pattern should've been rewritten"),
798                 def => span_bug!(pat.span, "pat_constructors: unexpected definition {:?}", def),
799             },
800         PatKind::Lit(ref expr) =>
801             vec![ConstantValue(eval_const_expr(cx.tcx, &expr))],
802         PatKind::Range(ref lo, ref hi) =>
803             vec![ConstantRange(eval_const_expr(cx.tcx, &lo), eval_const_expr(cx.tcx, &hi))],
804         PatKind::Vec(ref before, ref slice, ref after) =>
805             match left_ty.sty {
806                 ty::TyArray(_, _) => vec![Single],
807                 ty::TySlice(_) if slice.is_some() => {
808                     (before.len() + after.len()..max_slice_length+1)
809                         .map(|length| Slice(length))
810                         .collect()
811                 }
812                 ty::TySlice(_) => vec!(Slice(before.len() + after.len())),
813                 _ => span_bug!(pat.span, "pat_constructors: unexpected \
814                                           slice pattern type {:?}", left_ty)
815             },
816         PatKind::Box(..) | PatKind::Tuple(..) | PatKind::Ref(..) =>
817             vec![Single],
818         PatKind::Binding(..) | PatKind::Wild =>
819             vec![],
820     }
821 }
822
823 /// This computes the arity of a constructor. The arity of a constructor
824 /// is how many subpattern patterns of that constructor should be expanded to.
825 ///
826 /// For instance, a tuple pattern (_, 42, Some([])) has the arity of 3.
827 /// A struct pattern's arity is the number of fields it contains, etc.
828 pub fn constructor_arity(_cx: &MatchCheckCtxt, ctor: &Constructor, ty: Ty) -> usize {
829     debug!("constructor_arity({:?}, {:?})", ctor, ty);
830     match ty.sty {
831         ty::TyTuple(ref fs) => fs.len(),
832         ty::TyBox(_) => 1,
833         ty::TySlice(_) => match *ctor {
834             Slice(length) => length,
835             ConstantValue(_) => 0,
836             _ => bug!()
837         },
838         ty::TyRef(..) => 1,
839         ty::TyEnum(adt, _) | ty::TyStruct(adt, _) => {
840             ctor.variant_for_adt(adt).fields.len()
841         }
842         ty::TyArray(_, n) => n,
843         _ => 0
844     }
845 }
846
847 fn range_covered_by_constructor(tcx: TyCtxt, span: Span,
848                                 ctor: &Constructor,
849                                 from: &ConstVal, to: &ConstVal)
850                                 -> Result<bool, ErrorReported> {
851     let (c_from, c_to) = match *ctor {
852         ConstantValue(ref value)        => (value, value),
853         ConstantRange(ref from, ref to) => (from, to),
854         Single                          => return Ok(true),
855         _                               => bug!()
856     };
857     let cmp_from = compare_const_vals(tcx, span, c_from, from)?;
858     let cmp_to = compare_const_vals(tcx, span, c_to, to)?;
859     Ok(cmp_from != Ordering::Less && cmp_to != Ordering::Greater)
860 }
861
862 fn wrap_pat<'a, 'b, 'tcx>(cx: &MatchCheckCtxt<'b, 'tcx>,
863                           pat: &'a Pat)
864                           -> (&'a Pat, Option<Ty<'tcx>>)
865 {
866     let pat_ty = cx.tcx.pat_ty(pat);
867     (pat, Some(match pat.node {
868         PatKind::Binding(hir::BindByRef(..), _, _) => {
869             pat_ty.builtin_deref(false, NoPreference).unwrap().ty
870         }
871         _ => pat_ty
872     }))
873 }
874
875 /// This is the main specialization step. It expands the first pattern in the given row
876 /// into `arity` patterns based on the constructor. For most patterns, the step is trivial,
877 /// for instance tuple patterns are flattened and box patterns expand into their inner pattern.
878 ///
879 /// OTOH, slice patterns with a subslice pattern (..tail) can be expanded into multiple
880 /// different patterns.
881 /// Structure patterns with a partial wild pattern (Foo { a: 42, .. }) have their missing
882 /// fields filled with wild patterns.
883 pub fn specialize<'a, 'b, 'tcx>(
884     cx: &MatchCheckCtxt<'b, 'tcx>,
885     r: &[(&'a Pat, Option<Ty<'tcx>>)],
886     constructor: &Constructor, col: usize, arity: usize)
887     -> Option<Vec<(&'a Pat, Option<Ty<'tcx>>)>>
888 {
889     let pat = raw_pat(r[col].0);
890     let &Pat {
891         id: pat_id, ref node, span: pat_span
892     } = pat;
893     let wpat = |pat: &'a Pat| wrap_pat(cx, pat);
894     let dummy_pat = (DUMMY_WILD_PAT, None);
895
896     let head: Option<Vec<(&Pat, Option<Ty>)>> = match *node {
897         PatKind::Binding(..) | PatKind::Wild =>
898             Some(vec![dummy_pat; arity]),
899
900         PatKind::Path(..) => {
901             match cx.tcx.expect_def(pat_id) {
902                 Def::Const(..) | Def::AssociatedConst(..) =>
903                     span_bug!(pat_span, "const pattern should've \
904                                          been rewritten"),
905                 Def::Variant(_, id) if *constructor != Variant(id) => None,
906                 Def::Variant(..) | Def::Struct(..) => Some(Vec::new()),
907                 def => span_bug!(pat_span, "specialize: unexpected \
908                                           definition {:?}", def),
909             }
910         }
911
912         PatKind::TupleStruct(_, ref args, ddpos) => {
913             match cx.tcx.expect_def(pat_id) {
914                 Def::Const(..) | Def::AssociatedConst(..) =>
915                     span_bug!(pat_span, "const pattern should've \
916                                          been rewritten"),
917                 Def::Variant(_, id) if *constructor != Variant(id) => None,
918                 Def::Variant(..) | Def::Struct(..) => {
919                     match ddpos {
920                         Some(ddpos) => {
921                             let mut pats: Vec<_> = args[..ddpos].iter().map(|p| {
922                                 wpat(p)
923                             }).collect();
924                             pats.extend(repeat((DUMMY_WILD_PAT, None)).take(arity - args.len()));
925                             pats.extend(args[ddpos..].iter().map(|p| wpat(p)));
926                             Some(pats)
927                         }
928                         None => Some(args.iter().map(|p| wpat(p)).collect())
929                     }
930                 }
931                 _ => None
932             }
933         }
934
935         PatKind::Struct(_, ref pattern_fields, _) => {
936             let adt = cx.tcx.node_id_to_type(pat_id).ty_adt_def().unwrap();
937             let variant = constructor.variant_for_adt(adt);
938             let def_variant = adt.variant_of_def(cx.tcx.expect_def(pat_id));
939             if variant.did == def_variant.did {
940                 Some(variant.fields.iter().map(|sf| {
941                     match pattern_fields.iter().find(|f| f.node.name == sf.name) {
942                         Some(ref f) => wpat(&f.node.pat),
943                         _ => dummy_pat
944                     }
945                 }).collect())
946             } else {
947                 None
948             }
949         }
950
951         PatKind::Tuple(ref args, Some(ddpos)) => {
952             let mut pats: Vec<_> = args[..ddpos].iter().map(|p| wpat(p)).collect();
953             pats.extend(repeat(dummy_pat).take(arity - args.len()));
954             pats.extend(args[ddpos..].iter().map(|p| wpat(p)));
955             Some(pats)
956         }
957         PatKind::Tuple(ref args, None) =>
958             Some(args.iter().map(|p| wpat(&**p)).collect()),
959
960         PatKind::Box(ref inner) | PatKind::Ref(ref inner, _) =>
961             Some(vec![wpat(&**inner)]),
962
963         PatKind::Lit(ref expr) => {
964             if let Some(&ty::TyS { sty: ty::TyRef(_, mt), .. }) = r[col].1 {
965                 // HACK: handle string literals. A string literal pattern
966                 // serves both as an unary reference pattern and as a
967                 // nullary value pattern, depending on the type.
968                 Some(vec![(pat, Some(mt.ty))])
969             } else {
970                 let expr_value = eval_const_expr(cx.tcx, &expr);
971                 match range_covered_by_constructor(
972                     cx.tcx, expr.span, constructor, &expr_value, &expr_value
973                 ) {
974                     Ok(true) => Some(vec![]),
975                     Ok(false) => None,
976                     Err(ErrorReported) => None,
977                 }
978             }
979         }
980
981         PatKind::Range(ref from, ref to) => {
982             let from_value = eval_const_expr(cx.tcx, &from);
983             let to_value = eval_const_expr(cx.tcx, &to);
984             match range_covered_by_constructor(
985                 cx.tcx, pat_span, constructor, &from_value, &to_value
986             ) {
987                 Ok(true) => Some(vec![]),
988                 Ok(false) => None,
989                 Err(ErrorReported) => None,
990             }
991         }
992
993         PatKind::Vec(ref before, ref slice, ref after) => {
994             let pat_len = before.len() + after.len();
995             match *constructor {
996                 Single => {
997                     // Fixed-length vectors.
998                     Some(
999                         before.iter().map(|p| wpat(p)).chain(
1000                         repeat(dummy_pat).take(arity - pat_len).chain(
1001                         after.iter().map(|p| wpat(p))
1002                     )).collect())
1003                 },
1004                 Slice(length) if pat_len <= length && slice.is_some() => {
1005                     Some(
1006                         before.iter().map(|p| wpat(p)).chain(
1007                         repeat(dummy_pat).take(arity - pat_len).chain(
1008                         after.iter().map(|p| wpat(p))
1009                     )).collect())
1010                 }
1011                 Slice(length) if pat_len == length => {
1012                     Some(
1013                         before.iter().map(|p| wpat(p)).chain(
1014                         after.iter().map(|p| wpat(p))
1015                     ).collect())
1016                 }
1017                 SliceWithSubslice(prefix, suffix)
1018                     if before.len() == prefix
1019                         && after.len() == suffix
1020                         && slice.is_some() => {
1021                     // this is used by trans::_match only
1022                     let mut pats: Vec<_> = before.iter()
1023                         .map(|p| (&**p, None)).collect();
1024                     pats.extend(after.iter().map(|p| (&**p, None)));
1025                     Some(pats)
1026                 }
1027                 _ => None
1028             }
1029         }
1030     };
1031     debug!("specialize({:?}, {:?}) = {:?}", r[col], arity, head);
1032
1033     head.map(|mut head| {
1034         head.extend_from_slice(&r[..col]);
1035         head.extend_from_slice(&r[col + 1..]);
1036         head
1037     })
1038 }
1039
1040 fn check_local(cx: &mut MatchCheckCtxt, loc: &hir::Local) {
1041     intravisit::walk_local(cx, loc);
1042
1043     let pat = StaticInliner::new(cx.tcx, None).fold_pat(loc.pat.clone());
1044     check_irrefutable(cx, &pat, false);
1045
1046     // Check legality of move bindings and `@` patterns.
1047     check_legality_of_move_bindings(cx, false, slice::ref_slice(&loc.pat));
1048     check_legality_of_bindings_in_at_patterns(cx, &loc.pat);
1049 }
1050
1051 fn check_fn(cx: &mut MatchCheckCtxt,
1052             kind: FnKind,
1053             decl: &hir::FnDecl,
1054             body: &hir::Block,
1055             sp: Span,
1056             fn_id: NodeId) {
1057     match kind {
1058         FnKind::Closure(_) => {}
1059         _ => cx.param_env = ParameterEnvironment::for_item(cx.tcx, fn_id),
1060     }
1061
1062     intravisit::walk_fn(cx, kind, decl, body, sp, fn_id);
1063
1064     for input in &decl.inputs {
1065         check_irrefutable(cx, &input.pat, true);
1066         check_legality_of_move_bindings(cx, false, slice::ref_slice(&input.pat));
1067         check_legality_of_bindings_in_at_patterns(cx, &input.pat);
1068     }
1069 }
1070
1071 fn check_irrefutable(cx: &MatchCheckCtxt, pat: &Pat, is_fn_arg: bool) {
1072     let origin = if is_fn_arg {
1073         "function argument"
1074     } else {
1075         "local binding"
1076     };
1077
1078     is_refutable(cx, pat, |uncovered_pat| {
1079         let pattern_string = pat_to_string(uncovered_pat);
1080         struct_span_err!(cx.tcx.sess, pat.span, E0005,
1081             "refutable pattern in {}: `{}` not covered",
1082             origin,
1083             pattern_string,
1084         ).span_label(pat.span, &format!("pattern `{}` not covered", pattern_string)).emit();
1085     });
1086 }
1087
1088 fn is_refutable<A, F>(cx: &MatchCheckCtxt, pat: &Pat, refutable: F) -> Option<A> where
1089     F: FnOnce(&Pat) -> A,
1090 {
1091     let pats = Matrix(vec!(vec!(wrap_pat(cx, pat))));
1092     match is_useful(cx, &pats, &[(DUMMY_WILD_PAT, None)], ConstructWitness) {
1093         UsefulWithWitness(pats) => Some(refutable(&pats[0])),
1094         NotUseful => None,
1095         Useful => bug!()
1096     }
1097 }
1098
1099 // Legality of move bindings checking
1100 fn check_legality_of_move_bindings(cx: &MatchCheckCtxt,
1101                                    has_guard: bool,
1102                                    pats: &[P<Pat>]) {
1103     let mut by_ref_span = None;
1104     for pat in pats {
1105         pat_bindings(&pat, |bm, _, span, _path| {
1106             if let hir::BindByRef(..) = bm {
1107                 by_ref_span = Some(span);
1108             }
1109         })
1110     }
1111
1112     let check_move = |p: &Pat, sub: Option<&Pat>| {
1113         // check legality of moving out of the enum
1114
1115         // x @ Foo(..) is legal, but x @ Foo(y) isn't.
1116         if sub.map_or(false, |p| pat_contains_bindings(&p)) {
1117             struct_span_err!(cx.tcx.sess, p.span, E0007,
1118                              "cannot bind by-move with sub-bindings")
1119                 .span_label(p.span, &format!("binds an already bound by-move value by moving it"))
1120                 .emit();
1121         } else if has_guard {
1122             struct_span_err!(cx.tcx.sess, p.span, E0008,
1123                       "cannot bind by-move into a pattern guard")
1124                 .span_label(p.span, &format!("moves value into pattern guard"))
1125                 .emit();
1126         } else if by_ref_span.is_some() {
1127             struct_span_err!(cx.tcx.sess, p.span, E0009,
1128                             "cannot bind by-move and by-ref in the same pattern")
1129                     .span_label(p.span, &format!("by-move pattern here"))
1130                     .span_label(by_ref_span.unwrap(), &format!("both by-ref and by-move used"))
1131                     .emit();
1132         }
1133     };
1134
1135     for pat in pats {
1136         pat.walk(|p| {
1137             if let PatKind::Binding(hir::BindByValue(..), _, ref sub) = p.node {
1138                 let pat_ty = cx.tcx.node_id_to_type(p.id);
1139                 //FIXME: (@jroesch) this code should be floated up as well
1140                 cx.tcx.infer_ctxt(None, Some(cx.param_env.clone()),
1141                                   Reveal::NotSpecializable).enter(|infcx| {
1142                     if infcx.type_moves_by_default(pat_ty, pat.span) {
1143                         check_move(p, sub.as_ref().map(|p| &**p));
1144                     }
1145                 });
1146             }
1147             true
1148         });
1149     }
1150 }
1151
1152 /// Ensures that a pattern guard doesn't borrow by mutable reference or
1153 /// assign.
1154 fn check_for_mutation_in_guard<'a, 'tcx>(cx: &'a MatchCheckCtxt<'a, 'tcx>,
1155                                          guard: &hir::Expr) {
1156     cx.tcx.infer_ctxt(None, Some(cx.param_env.clone()),
1157                       Reveal::NotSpecializable).enter(|infcx| {
1158         let mut checker = MutationChecker {
1159             cx: cx,
1160         };
1161         let mut visitor = ExprUseVisitor::new(&mut checker, &infcx);
1162         visitor.walk_expr(guard);
1163     });
1164 }
1165
1166 struct MutationChecker<'a, 'gcx: 'a> {
1167     cx: &'a MatchCheckCtxt<'a, 'gcx>,
1168 }
1169
1170 impl<'a, 'gcx, 'tcx> Delegate<'tcx> for MutationChecker<'a, 'gcx> {
1171     fn matched_pat(&mut self, _: &Pat, _: cmt, _: euv::MatchMode) {}
1172     fn consume(&mut self, _: NodeId, _: Span, _: cmt, _: ConsumeMode) {}
1173     fn consume_pat(&mut self, _: &Pat, _: cmt, _: ConsumeMode) {}
1174     fn borrow(&mut self,
1175               _: NodeId,
1176               span: Span,
1177               _: cmt,
1178               _: &'tcx Region,
1179               kind: BorrowKind,
1180               _: LoanCause) {
1181         match kind {
1182             MutBorrow => {
1183                 struct_span_err!(self.cx.tcx.sess, span, E0301,
1184                           "cannot mutably borrow in a pattern guard")
1185                     .span_label(span, &format!("borrowed mutably in pattern guard"))
1186                     .emit();
1187             }
1188             ImmBorrow | UniqueImmBorrow => {}
1189         }
1190     }
1191     fn decl_without_init(&mut self, _: NodeId, _: Span) {}
1192     fn mutate(&mut self, _: NodeId, span: Span, _: cmt, mode: MutateMode) {
1193         match mode {
1194             MutateMode::JustWrite | MutateMode::WriteAndRead => {
1195                 struct_span_err!(self.cx.tcx.sess, span, E0302, "cannot assign in a pattern guard")
1196                     .span_label(span, &format!("assignment in pattern guard"))
1197                     .emit();
1198             }
1199             MutateMode::Init => {}
1200         }
1201     }
1202 }
1203
1204 /// Forbids bindings in `@` patterns. This is necessary for memory safety,
1205 /// because of the way rvalues are handled in the borrow check. (See issue
1206 /// #14587.)
1207 fn check_legality_of_bindings_in_at_patterns(cx: &MatchCheckCtxt, pat: &Pat) {
1208     AtBindingPatternVisitor { cx: cx, bindings_allowed: true }.visit_pat(pat);
1209 }
1210
1211 struct AtBindingPatternVisitor<'a, 'b:'a, 'tcx:'b> {
1212     cx: &'a MatchCheckCtxt<'b, 'tcx>,
1213     bindings_allowed: bool
1214 }
1215
1216 impl<'a, 'b, 'tcx, 'v> Visitor<'v> for AtBindingPatternVisitor<'a, 'b, 'tcx> {
1217     fn visit_pat(&mut self, pat: &Pat) {
1218         match pat.node {
1219             PatKind::Binding(_, _, ref subpat) => {
1220                 if !self.bindings_allowed {
1221                     span_err!(self.cx.tcx.sess, pat.span, E0303,
1222                               "pattern bindings are not allowed after an `@`");
1223                 }
1224
1225                 if subpat.is_some() {
1226                     let bindings_were_allowed = self.bindings_allowed;
1227                     self.bindings_allowed = false;
1228                     intravisit::walk_pat(self, pat);
1229                     self.bindings_allowed = bindings_were_allowed;
1230                 }
1231             }
1232             _ => intravisit::walk_pat(self, pat),
1233         }
1234     }
1235 }