]> git.lizzy.rs Git - rust.git/blob - src/librustc_const_eval/check_match.rs
Rollup merge of #35380 - TheZoq2:master, r=jonathandturner
[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::ProjectionMode;
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_empty(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* empty, 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, ex.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                                 span_err!(cx.tcx.sess, span, E0162, "irrefutable if-let pattern");
315                                 printed_if_let_err = true;
316                             }
317                         },
318
319                         hir::MatchSource::WhileLetDesugar => {
320                             // find the first arm pattern so we can use its span
321                             let &(ref first_arm_pats, _) = &arms[0];
322                             let first_pat = &first_arm_pats[0];
323                             let span = first_pat.span;
324                             span_err!(cx.tcx.sess, span, E0165, "irrefutable while-let pattern");
325                         },
326
327                         hir::MatchSource::ForLoopDesugar => {
328                             // this is a bug, because on `match iter.next()` we cover
329                             // `Some(<head>)` and `None`. It's impossible to have an unreachable
330                             // pattern
331                             // (see libsyntax/ext/expand.rs for the full expansion of a for loop)
332                             span_bug!(pat.span, "unreachable for-loop pattern")
333                         },
334
335                         hir::MatchSource::Normal => {
336                             let mut err = struct_span_err!(cx.tcx.sess, pat.span, E0001,
337                                                            "unreachable pattern");
338                             err.span_label(pat.span, &format!("this is an unreachable pattern"));
339                             // if we had a catchall pattern, hint at that
340                             for row in &seen.0 {
341                                 if pat_is_catchall(&cx.tcx.def_map.borrow(), row[0].0) {
342                                     span_note!(err, row[0].0.span,
343                                                "this pattern matches any value");
344                                 }
345                             }
346                             err.emit();
347                         },
348
349                         hir::MatchSource::TryDesugar => {
350                             span_bug!(pat.span, "unreachable try pattern")
351                         },
352                     }
353                 }
354                 Useful => (),
355                 UsefulWithWitness(_) => bug!()
356             }
357             if guard.is_none() {
358                 let Matrix(mut rows) = seen;
359                 rows.push(v);
360                 seen = Matrix(rows);
361             }
362         }
363     }
364 }
365
366 /// Checks for common cases of "catchall" patterns that may not be intended as such.
367 fn pat_is_catchall(dm: &DefMap, p: &Pat) -> bool {
368     match p.node {
369         PatKind::Binding(_, _, None) => true,
370         PatKind::Binding(_, _, Some(ref s)) => pat_is_catchall(dm, &s),
371         PatKind::Ref(ref s, _) => pat_is_catchall(dm, &s),
372         PatKind::Tuple(ref v, _) => v.iter().all(|p| pat_is_catchall(dm, &p)),
373         _ => false
374     }
375 }
376
377 fn raw_pat(p: &Pat) -> &Pat {
378     match p.node {
379         PatKind::Binding(_, _, Some(ref s)) => raw_pat(&s),
380         _ => p
381     }
382 }
383
384 fn check_exhaustive<'a, 'tcx>(cx: &MatchCheckCtxt<'a, 'tcx>,
385                               sp: Span,
386                               matrix: &Matrix<'a, 'tcx>,
387                               source: hir::MatchSource) {
388     match is_useful(cx, matrix, &[(DUMMY_WILD_PAT, None)], ConstructWitness) {
389         UsefulWithWitness(pats) => {
390             let witnesses = if pats.is_empty() {
391                 vec![DUMMY_WILD_PAT]
392             } else {
393                 pats.iter().map(|w| &**w).collect()
394             };
395             match source {
396                 hir::MatchSource::ForLoopDesugar => {
397                     // `witnesses[0]` has the form `Some(<head>)`, peel off the `Some`
398                     let witness = match witnesses[0].node {
399                         PatKind::TupleStruct(_, ref pats, _) => match &pats[..] {
400                             &[ref pat] => &**pat,
401                             _ => bug!(),
402                         },
403                         _ => bug!(),
404                     };
405                     span_err!(cx.tcx.sess, sp, E0297,
406                         "refutable pattern in `for` loop binding: \
407                                 `{}` not covered",
408                                 pat_to_string(witness));
409                 },
410                 _ => {
411                     let pattern_strings: Vec<_> = witnesses.iter().map(|w| {
412                         pat_to_string(w)
413                     }).collect();
414                     const LIMIT: usize = 3;
415                     let joined_patterns = match pattern_strings.len() {
416                         0 => bug!(),
417                         1 => format!("`{}`", pattern_strings[0]),
418                         2...LIMIT => {
419                             let (tail, head) = pattern_strings.split_last().unwrap();
420                             format!("`{}`", head.join("`, `") + "` and `" + tail)
421                         },
422                         _ => {
423                             let (head, tail) = pattern_strings.split_at(LIMIT);
424                             format!("`{}` and {} more", head.join("`, `"), tail.len())
425                         }
426                     };
427
428                     let label_text = match pattern_strings.len(){
429                         1 => format!("pattern {} not covered", joined_patterns),
430                         _ => format!("patterns {} not covered", joined_patterns)
431                     };
432                     struct_span_err!(cx.tcx.sess, sp, E0004,
433                         "non-exhaustive patterns: {} not covered",
434                         joined_patterns
435                     ).span_label(sp, &label_text).emit();
436                 },
437             }
438         }
439         NotUseful => {
440             // This is good, wildcard pattern isn't reachable
441         },
442         _ => bug!()
443     }
444 }
445
446 fn const_val_to_expr(value: &ConstVal) -> P<hir::Expr> {
447     let node = match value {
448         &ConstVal::Bool(b) => ast::LitKind::Bool(b),
449         _ => bug!()
450     };
451     P(hir::Expr {
452         id: 0,
453         node: hir::ExprLit(P(Spanned { node: node, span: DUMMY_SP })),
454         span: DUMMY_SP,
455         attrs: ast::ThinVec::new(),
456     })
457 }
458
459 pub struct StaticInliner<'a, 'tcx: 'a> {
460     pub tcx: TyCtxt<'a, 'tcx, 'tcx>,
461     pub failed: bool,
462     pub renaming_map: Option<&'a mut FnvHashMap<(NodeId, Span), NodeId>>,
463 }
464
465 impl<'a, 'tcx> StaticInliner<'a, 'tcx> {
466     pub fn new<'b>(tcx: TyCtxt<'b, 'tcx, 'tcx>,
467                    renaming_map: Option<&'b mut FnvHashMap<(NodeId, Span), NodeId>>)
468                    -> StaticInliner<'b, 'tcx> {
469         StaticInliner {
470             tcx: tcx,
471             failed: false,
472             renaming_map: renaming_map
473         }
474     }
475 }
476
477 struct RenamingRecorder<'map> {
478     substituted_node_id: NodeId,
479     origin_span: Span,
480     renaming_map: &'map mut FnvHashMap<(NodeId, Span), NodeId>
481 }
482
483 impl<'v, 'map> Visitor<'v> for RenamingRecorder<'map> {
484     fn visit_id(&mut self, node_id: NodeId) {
485         let key = (node_id, self.origin_span);
486         self.renaming_map.insert(key, self.substituted_node_id);
487     }
488 }
489
490 impl<'a, 'tcx> Folder for StaticInliner<'a, 'tcx> {
491     fn fold_pat(&mut self, pat: P<Pat>) -> P<Pat> {
492         return match pat.node {
493             PatKind::Path(..) => {
494                 match self.tcx.expect_def(pat.id) {
495                     Def::AssociatedConst(did) | Def::Const(did) => {
496                         let substs = Some(self.tcx.node_id_item_substs(pat.id).substs);
497                         if let Some((const_expr, _)) = lookup_const_by_id(self.tcx, did, substs) {
498                             match const_expr_to_pat(self.tcx, const_expr, pat.id, pat.span) {
499                                 Ok(new_pat) => {
500                                     if let Some(ref mut map) = self.renaming_map {
501                                         // Record any renamings we do here
502                                         record_renamings(const_expr, &pat, map);
503                                     }
504                                     new_pat
505                                 }
506                                 Err(def_id) => {
507                                     self.failed = true;
508                                     self.tcx.sess.span_err(
509                                         pat.span,
510                                         &format!("constants of the type `{}` \
511                                                   cannot be used in patterns",
512                                                  self.tcx.item_path_str(def_id)));
513                                     pat
514                                 }
515                             }
516                         } else {
517                             self.failed = true;
518                             span_err!(self.tcx.sess, pat.span, E0158,
519                                 "statics cannot be referenced in patterns");
520                             pat
521                         }
522                     }
523                     _ => noop_fold_pat(pat, self)
524                 }
525             }
526             _ => noop_fold_pat(pat, self)
527         };
528
529         fn record_renamings(const_expr: &hir::Expr,
530                             substituted_pat: &hir::Pat,
531                             renaming_map: &mut FnvHashMap<(NodeId, Span), NodeId>) {
532             let mut renaming_recorder = RenamingRecorder {
533                 substituted_node_id: substituted_pat.id,
534                 origin_span: substituted_pat.span,
535                 renaming_map: renaming_map,
536             };
537
538             renaming_recorder.visit_expr(const_expr);
539         }
540     }
541 }
542
543 /// Constructs a partial witness for a pattern given a list of
544 /// patterns expanded by the specialization step.
545 ///
546 /// When a pattern P is discovered to be useful, this function is used bottom-up
547 /// to reconstruct a complete witness, e.g. a pattern P' that covers a subset
548 /// of values, V, where each value in that set is not covered by any previously
549 /// used patterns and is covered by the pattern P'. Examples:
550 ///
551 /// left_ty: tuple of 3 elements
552 /// pats: [10, 20, _]           => (10, 20, _)
553 ///
554 /// left_ty: struct X { a: (bool, &'static str), b: usize}
555 /// pats: [(false, "foo"), 42]  => X { a: (false, "foo"), b: 42 }
556 fn construct_witness<'a,'tcx>(cx: &MatchCheckCtxt<'a,'tcx>, ctor: &Constructor,
557                               pats: Vec<&Pat>, left_ty: Ty<'tcx>) -> P<Pat> {
558     let pats_len = pats.len();
559     let mut pats = pats.into_iter().map(|p| P((*p).clone()));
560     let pat = match left_ty.sty {
561         ty::TyTuple(..) => PatKind::Tuple(pats.collect(), None),
562
563         ty::TyEnum(adt, _) | ty::TyStruct(adt, _)  => {
564             let v = ctor.variant_for_adt(adt);
565             match v.kind {
566                 VariantKind::Struct => {
567                     let field_pats: hir::HirVec<_> = v.fields.iter()
568                         .zip(pats)
569                         .filter(|&(_, ref pat)| pat.node != PatKind::Wild)
570                         .map(|(field, pat)| Spanned {
571                             span: DUMMY_SP,
572                             node: hir::FieldPat {
573                                 name: field.name,
574                                 pat: pat,
575                                 is_shorthand: false,
576                             }
577                         }).collect();
578                     let has_more_fields = field_pats.len() < pats_len;
579                     PatKind::Struct(def_to_path(cx.tcx, v.did), field_pats, has_more_fields)
580                 }
581                 VariantKind::Tuple => {
582                     PatKind::TupleStruct(def_to_path(cx.tcx, v.did), pats.collect(), None)
583                 }
584                 VariantKind::Unit => {
585                     PatKind::Path(None, def_to_path(cx.tcx, v.did))
586                 }
587             }
588         }
589
590         ty::TyRef(_, ty::TypeAndMut { mutbl, .. }) => {
591             assert_eq!(pats_len, 1);
592             PatKind::Ref(pats.nth(0).unwrap(), mutbl)
593         }
594
595         ty::TySlice(_) => match ctor {
596             &Slice(n) => {
597                 assert_eq!(pats_len, n);
598                 PatKind::Vec(pats.collect(), None, hir::HirVec::new())
599             },
600             _ => unreachable!()
601         },
602
603         ty::TyArray(_, len) => {
604             assert_eq!(pats_len, len);
605             PatKind::Vec(pats.collect(), None, hir::HirVec::new())
606         }
607
608         _ => {
609             match *ctor {
610                 ConstantValue(ref v) => PatKind::Lit(const_val_to_expr(v)),
611                 _ => PatKind::Wild,
612             }
613         }
614     };
615
616     P(hir::Pat {
617         id: 0,
618         node: pat,
619         span: DUMMY_SP
620     })
621 }
622
623 impl Constructor {
624     fn variant_for_adt<'tcx, 'container, 'a>(&self,
625                                              adt: &'a ty::AdtDefData<'tcx, 'container>)
626                                              -> &'a VariantDefData<'tcx, 'container> {
627         match self {
628             &Variant(vid) => adt.variant_with_id(vid),
629             _ => adt.struct_variant()
630         }
631     }
632 }
633
634 fn missing_constructors(cx: &MatchCheckCtxt, &Matrix(ref rows): &Matrix,
635                        left_ty: Ty, max_slice_length: usize) -> Vec<Constructor> {
636     let used_constructors: Vec<Constructor> = rows.iter()
637         .flat_map(|row| pat_constructors(cx, row[0].0, left_ty, max_slice_length))
638         .collect();
639     all_constructors(cx, left_ty, max_slice_length)
640         .into_iter()
641         .filter(|c| !used_constructors.contains(c))
642         .collect()
643 }
644
645 /// This determines the set of all possible constructors of a pattern matching
646 /// values of type `left_ty`. For vectors, this would normally be an infinite set
647 /// but is instead bounded by the maximum fixed length of slice patterns in
648 /// the column of patterns being analyzed.
649 fn all_constructors(_cx: &MatchCheckCtxt, left_ty: Ty,
650                     max_slice_length: usize) -> Vec<Constructor> {
651     match left_ty.sty {
652         ty::TyBool =>
653             [true, false].iter().map(|b| ConstantValue(ConstVal::Bool(*b))).collect(),
654         ty::TySlice(_) =>
655             (0..max_slice_length+1).map(|length| Slice(length)).collect(),
656         ty::TyEnum(def, _) => def.variants.iter().map(|v| Variant(v.did)).collect(),
657         _ => vec![Single]
658     }
659 }
660
661 // Algorithm from http://moscova.inria.fr/~maranget/papers/warn/index.html
662 //
663 // Whether a vector `v` of patterns is 'useful' in relation to a set of such
664 // vectors `m` is defined as there being a set of inputs that will match `v`
665 // but not any of the sets in `m`.
666 //
667 // This is used both for reachability checking (if a pattern isn't useful in
668 // relation to preceding patterns, it is not reachable) and exhaustiveness
669 // checking (if a wildcard pattern is useful in relation to a matrix, the
670 // matrix isn't exhaustive).
671
672 // Note: is_useful doesn't work on empty types, as the paper notes.
673 // So it assumes that v is non-empty.
674 fn is_useful<'a, 'tcx>(cx: &MatchCheckCtxt<'a, 'tcx>,
675                        matrix: &Matrix<'a, 'tcx>,
676                        v: &[(&Pat, Option<Ty<'tcx>>)],
677                        witness: WitnessPreference)
678                        -> Usefulness {
679     let &Matrix(ref rows) = matrix;
680     debug!("is_useful({:?}, {:?})", matrix, v);
681     if rows.is_empty() {
682         return match witness {
683             ConstructWitness => UsefulWithWitness(vec!()),
684             LeaveOutWitness => Useful
685         };
686     }
687     if rows[0].is_empty() {
688         return NotUseful;
689     }
690     assert!(rows.iter().all(|r| r.len() == v.len()));
691     let left_ty = match rows.iter().filter_map(|r| r[0].1).next().or_else(|| v[0].1) {
692         Some(ty) => ty,
693         None => {
694             // all patterns are wildcards - we can pick any type we want
695             cx.tcx.types.bool
696         }
697     };
698
699     let max_slice_length = rows.iter().filter_map(|row| match row[0].0.node {
700         PatKind::Vec(ref before, _, ref after) => Some(before.len() + after.len()),
701         _ => None
702     }).max().map_or(0, |v| v + 1);
703
704     let constructors = pat_constructors(cx, v[0].0, left_ty, max_slice_length);
705     debug!("is_useful - pat_constructors = {:?} left_ty = {:?}", constructors,
706            left_ty);
707     if constructors.is_empty() {
708         let constructors = missing_constructors(cx, matrix, left_ty, max_slice_length);
709         debug!("is_useful - missing_constructors = {:?}", constructors);
710         if constructors.is_empty() {
711             all_constructors(cx, left_ty, max_slice_length).into_iter().map(|c| {
712                 match is_useful_specialized(cx, matrix, v, c.clone(), left_ty, witness) {
713                     UsefulWithWitness(pats) => UsefulWithWitness({
714                         let arity = constructor_arity(cx, &c, left_ty);
715                         let mut result = {
716                             let pat_slice = &pats[..];
717                             let subpats: Vec<_> = (0..arity).map(|i| {
718                                 pat_slice.get(i).map_or(DUMMY_WILD_PAT, |p| &**p)
719                             }).collect();
720                             vec![construct_witness(cx, &c, subpats, left_ty)]
721                         };
722                         result.extend(pats.into_iter().skip(arity));
723                         result
724                     }),
725                     result => result
726                 }
727             }).find(|result| result != &NotUseful).unwrap_or(NotUseful)
728         } else {
729             let matrix = rows.iter().filter_map(|r| {
730                 match raw_pat(r[0].0).node {
731                     PatKind::Binding(..) | PatKind::Wild => Some(r[1..].to_vec()),
732                     _ => None,
733                 }
734             }).collect();
735             match is_useful(cx, &matrix, &v[1..], witness) {
736                 UsefulWithWitness(pats) => {
737                     let mut new_pats: Vec<_> = constructors.into_iter().map(|constructor| {
738                         let arity = constructor_arity(cx, &constructor, left_ty);
739                         let wild_pats = vec![DUMMY_WILD_PAT; arity];
740                         construct_witness(cx, &constructor, wild_pats, left_ty)
741                     }).collect();
742                     new_pats.extend(pats);
743                     UsefulWithWitness(new_pats)
744                 },
745                 result => result
746             }
747         }
748     } else {
749         constructors.into_iter().map(|c|
750             is_useful_specialized(cx, matrix, v, c.clone(), left_ty, witness)
751         ).find(|result| result != &NotUseful).unwrap_or(NotUseful)
752     }
753 }
754
755 fn is_useful_specialized<'a, 'tcx>(
756     cx: &MatchCheckCtxt<'a, 'tcx>,
757     &Matrix(ref m): &Matrix<'a, 'tcx>,
758     v: &[(&Pat, Option<Ty<'tcx>>)],
759     ctor: Constructor,
760     lty: Ty<'tcx>,
761     witness: WitnessPreference) -> Usefulness
762 {
763     let arity = constructor_arity(cx, &ctor, lty);
764     let matrix = Matrix(m.iter().filter_map(|r| {
765         specialize(cx, &r[..], &ctor, 0, arity)
766     }).collect());
767     match specialize(cx, v, &ctor, 0, arity) {
768         Some(v) => is_useful(cx, &matrix, &v[..], witness),
769         None => NotUseful
770     }
771 }
772
773 /// Determines the constructors that the given pattern can be specialized to.
774 ///
775 /// In most cases, there's only one constructor that a specific pattern
776 /// represents, such as a specific enum variant or a specific literal value.
777 /// Slice patterns, however, can match slices of different lengths. For instance,
778 /// `[a, b, ..tail]` can match a slice of length 2, 3, 4 and so on.
779 ///
780 /// On the other hand, a wild pattern and an identifier pattern cannot be
781 /// specialized in any way.
782 fn pat_constructors(cx: &MatchCheckCtxt, p: &Pat,
783                     left_ty: Ty, max_slice_length: usize) -> Vec<Constructor> {
784     let pat = raw_pat(p);
785     match pat.node {
786         PatKind::Struct(..) | PatKind::TupleStruct(..) | PatKind::Path(..) =>
787             match cx.tcx.expect_def(pat.id) {
788                 Def::Variant(_, id) => vec![Variant(id)],
789                 Def::Struct(..) | Def::TyAlias(..) | Def::AssociatedTy(..) => vec![Single],
790                 Def::Const(..) | Def::AssociatedConst(..) =>
791                     span_bug!(pat.span, "const pattern should've been rewritten"),
792                 def => span_bug!(pat.span, "pat_constructors: unexpected definition {:?}", def),
793             },
794         PatKind::Lit(ref expr) =>
795             vec![ConstantValue(eval_const_expr(cx.tcx, &expr))],
796         PatKind::Range(ref lo, ref hi) =>
797             vec![ConstantRange(eval_const_expr(cx.tcx, &lo), eval_const_expr(cx.tcx, &hi))],
798         PatKind::Vec(ref before, ref slice, ref after) =>
799             match left_ty.sty {
800                 ty::TyArray(_, _) => vec![Single],
801                 ty::TySlice(_) if slice.is_some() => {
802                     (before.len() + after.len()..max_slice_length+1)
803                         .map(|length| Slice(length))
804                         .collect()
805                 }
806                 ty::TySlice(_) => vec!(Slice(before.len() + after.len())),
807                 _ => span_bug!(pat.span, "pat_constructors: unexpected \
808                                           slice pattern type {:?}", left_ty)
809             },
810         PatKind::Box(..) | PatKind::Tuple(..) | PatKind::Ref(..) =>
811             vec![Single],
812         PatKind::Binding(..) | PatKind::Wild =>
813             vec![],
814     }
815 }
816
817 /// This computes the arity of a constructor. The arity of a constructor
818 /// is how many subpattern patterns of that constructor should be expanded to.
819 ///
820 /// For instance, a tuple pattern (_, 42, Some([])) has the arity of 3.
821 /// A struct pattern's arity is the number of fields it contains, etc.
822 pub fn constructor_arity(_cx: &MatchCheckCtxt, ctor: &Constructor, ty: Ty) -> usize {
823     debug!("constructor_arity({:?}, {:?})", ctor, ty);
824     match ty.sty {
825         ty::TyTuple(ref fs) => fs.len(),
826         ty::TyBox(_) => 1,
827         ty::TySlice(_) => match *ctor {
828             Slice(length) => length,
829             ConstantValue(_) => 0,
830             _ => bug!()
831         },
832         ty::TyRef(..) => 1,
833         ty::TyEnum(adt, _) | ty::TyStruct(adt, _) => {
834             ctor.variant_for_adt(adt).fields.len()
835         }
836         ty::TyArray(_, n) => n,
837         _ => 0
838     }
839 }
840
841 fn range_covered_by_constructor(tcx: TyCtxt, span: Span,
842                                 ctor: &Constructor,
843                                 from: &ConstVal, to: &ConstVal)
844                                 -> Result<bool, ErrorReported> {
845     let (c_from, c_to) = match *ctor {
846         ConstantValue(ref value)        => (value, value),
847         ConstantRange(ref from, ref to) => (from, to),
848         Single                          => return Ok(true),
849         _                               => bug!()
850     };
851     let cmp_from = compare_const_vals(tcx, span, c_from, from)?;
852     let cmp_to = compare_const_vals(tcx, span, c_to, to)?;
853     Ok(cmp_from != Ordering::Less && cmp_to != Ordering::Greater)
854 }
855
856 fn wrap_pat<'a, 'b, 'tcx>(cx: &MatchCheckCtxt<'b, 'tcx>,
857                           pat: &'a Pat)
858                           -> (&'a Pat, Option<Ty<'tcx>>)
859 {
860     let pat_ty = cx.tcx.pat_ty(pat);
861     (pat, Some(match pat.node {
862         PatKind::Binding(hir::BindByRef(..), _, _) => {
863             pat_ty.builtin_deref(false, NoPreference).unwrap().ty
864         }
865         _ => pat_ty
866     }))
867 }
868
869 /// This is the main specialization step. It expands the first pattern in the given row
870 /// into `arity` patterns based on the constructor. For most patterns, the step is trivial,
871 /// for instance tuple patterns are flattened and box patterns expand into their inner pattern.
872 ///
873 /// OTOH, slice patterns with a subslice pattern (..tail) can be expanded into multiple
874 /// different patterns.
875 /// Structure patterns with a partial wild pattern (Foo { a: 42, .. }) have their missing
876 /// fields filled with wild patterns.
877 pub fn specialize<'a, 'b, 'tcx>(
878     cx: &MatchCheckCtxt<'b, 'tcx>,
879     r: &[(&'a Pat, Option<Ty<'tcx>>)],
880     constructor: &Constructor, col: usize, arity: usize)
881     -> Option<Vec<(&'a Pat, Option<Ty<'tcx>>)>>
882 {
883     let pat = raw_pat(r[col].0);
884     let &Pat {
885         id: pat_id, ref node, span: pat_span
886     } = pat;
887     let wpat = |pat: &'a Pat| wrap_pat(cx, pat);
888     let dummy_pat = (DUMMY_WILD_PAT, None);
889
890     let head: Option<Vec<(&Pat, Option<Ty>)>> = match *node {
891         PatKind::Binding(..) | PatKind::Wild =>
892             Some(vec![dummy_pat; arity]),
893
894         PatKind::Path(..) => {
895             match cx.tcx.expect_def(pat_id) {
896                 Def::Const(..) | Def::AssociatedConst(..) =>
897                     span_bug!(pat_span, "const pattern should've \
898                                          been rewritten"),
899                 Def::Variant(_, id) if *constructor != Variant(id) => None,
900                 Def::Variant(..) | Def::Struct(..) => Some(Vec::new()),
901                 def => span_bug!(pat_span, "specialize: unexpected \
902                                           definition {:?}", def),
903             }
904         }
905
906         PatKind::TupleStruct(_, ref args, ddpos) => {
907             match cx.tcx.expect_def(pat_id) {
908                 Def::Const(..) | Def::AssociatedConst(..) =>
909                     span_bug!(pat_span, "const pattern should've \
910                                          been rewritten"),
911                 Def::Variant(_, id) if *constructor != Variant(id) => None,
912                 Def::Variant(..) | Def::Struct(..) => {
913                     match ddpos {
914                         Some(ddpos) => {
915                             let mut pats: Vec<_> = args[..ddpos].iter().map(|p| {
916                                 wpat(p)
917                             }).collect();
918                             pats.extend(repeat((DUMMY_WILD_PAT, None)).take(arity - args.len()));
919                             pats.extend(args[ddpos..].iter().map(|p| wpat(p)));
920                             Some(pats)
921                         }
922                         None => Some(args.iter().map(|p| wpat(p)).collect())
923                     }
924                 }
925                 _ => None
926             }
927         }
928
929         PatKind::Struct(_, ref pattern_fields, _) => {
930             let adt = cx.tcx.node_id_to_type(pat_id).ty_adt_def().unwrap();
931             let variant = constructor.variant_for_adt(adt);
932             let def_variant = adt.variant_of_def(cx.tcx.expect_def(pat_id));
933             if variant.did == def_variant.did {
934                 Some(variant.fields.iter().map(|sf| {
935                     match pattern_fields.iter().find(|f| f.node.name == sf.name) {
936                         Some(ref f) => wpat(&f.node.pat),
937                         _ => dummy_pat
938                     }
939                 }).collect())
940             } else {
941                 None
942             }
943         }
944
945         PatKind::Tuple(ref args, Some(ddpos)) => {
946             let mut pats: Vec<_> = args[..ddpos].iter().map(|p| wpat(p)).collect();
947             pats.extend(repeat(dummy_pat).take(arity - args.len()));
948             pats.extend(args[ddpos..].iter().map(|p| wpat(p)));
949             Some(pats)
950         }
951         PatKind::Tuple(ref args, None) =>
952             Some(args.iter().map(|p| wpat(&**p)).collect()),
953
954         PatKind::Box(ref inner) | PatKind::Ref(ref inner, _) =>
955             Some(vec![wpat(&**inner)]),
956
957         PatKind::Lit(ref expr) => {
958             if let Some(&ty::TyS { sty: ty::TyRef(_, mt), .. }) = r[col].1 {
959                 // HACK: handle string literals. A string literal pattern
960                 // serves both as an unary reference pattern and as a
961                 // nullary value pattern, depending on the type.
962                 Some(vec![(pat, Some(mt.ty))])
963             } else {
964                 let expr_value = eval_const_expr(cx.tcx, &expr);
965                 match range_covered_by_constructor(
966                     cx.tcx, expr.span, constructor, &expr_value, &expr_value
967                 ) {
968                     Ok(true) => Some(vec![]),
969                     Ok(false) => None,
970                     Err(ErrorReported) => None,
971                 }
972             }
973         }
974
975         PatKind::Range(ref from, ref to) => {
976             let from_value = eval_const_expr(cx.tcx, &from);
977             let to_value = eval_const_expr(cx.tcx, &to);
978             match range_covered_by_constructor(
979                 cx.tcx, pat_span, constructor, &from_value, &to_value
980             ) {
981                 Ok(true) => Some(vec![]),
982                 Ok(false) => None,
983                 Err(ErrorReported) => None,
984             }
985         }
986
987         PatKind::Vec(ref before, ref slice, ref after) => {
988             let pat_len = before.len() + after.len();
989             match *constructor {
990                 Single => {
991                     // Fixed-length vectors.
992                     Some(
993                         before.iter().map(|p| wpat(p)).chain(
994                         repeat(dummy_pat).take(arity - pat_len).chain(
995                         after.iter().map(|p| wpat(p))
996                     )).collect())
997                 },
998                 Slice(length) if pat_len <= length && slice.is_some() => {
999                     Some(
1000                         before.iter().map(|p| wpat(p)).chain(
1001                         repeat(dummy_pat).take(arity - pat_len).chain(
1002                         after.iter().map(|p| wpat(p))
1003                     )).collect())
1004                 }
1005                 Slice(length) if pat_len == length => {
1006                     Some(
1007                         before.iter().map(|p| wpat(p)).chain(
1008                         after.iter().map(|p| wpat(p))
1009                     ).collect())
1010                 }
1011                 SliceWithSubslice(prefix, suffix)
1012                     if before.len() == prefix
1013                         && after.len() == suffix
1014                         && slice.is_some() => {
1015                     // this is used by trans::_match only
1016                     let mut pats: Vec<_> = before.iter()
1017                         .map(|p| (&**p, None)).collect();
1018                     pats.extend(after.iter().map(|p| (&**p, None)));
1019                     Some(pats)
1020                 }
1021                 _ => None
1022             }
1023         }
1024     };
1025     debug!("specialize({:?}, {:?}) = {:?}", r[col], arity, head);
1026
1027     head.map(|mut head| {
1028         head.extend_from_slice(&r[..col]);
1029         head.extend_from_slice(&r[col + 1..]);
1030         head
1031     })
1032 }
1033
1034 fn check_local(cx: &mut MatchCheckCtxt, loc: &hir::Local) {
1035     intravisit::walk_local(cx, loc);
1036
1037     let pat = StaticInliner::new(cx.tcx, None).fold_pat(loc.pat.clone());
1038     check_irrefutable(cx, &pat, false);
1039
1040     // Check legality of move bindings and `@` patterns.
1041     check_legality_of_move_bindings(cx, false, slice::ref_slice(&loc.pat));
1042     check_legality_of_bindings_in_at_patterns(cx, &loc.pat);
1043 }
1044
1045 fn check_fn(cx: &mut MatchCheckCtxt,
1046             kind: FnKind,
1047             decl: &hir::FnDecl,
1048             body: &hir::Block,
1049             sp: Span,
1050             fn_id: NodeId) {
1051     match kind {
1052         FnKind::Closure(_) => {}
1053         _ => cx.param_env = ParameterEnvironment::for_item(cx.tcx, fn_id),
1054     }
1055
1056     intravisit::walk_fn(cx, kind, decl, body, sp, fn_id);
1057
1058     for input in &decl.inputs {
1059         check_irrefutable(cx, &input.pat, true);
1060         check_legality_of_move_bindings(cx, false, slice::ref_slice(&input.pat));
1061         check_legality_of_bindings_in_at_patterns(cx, &input.pat);
1062     }
1063 }
1064
1065 fn check_irrefutable(cx: &MatchCheckCtxt, pat: &Pat, is_fn_arg: bool) {
1066     let origin = if is_fn_arg {
1067         "function argument"
1068     } else {
1069         "local binding"
1070     };
1071
1072     is_refutable(cx, pat, |uncovered_pat| {
1073         span_err!(cx.tcx.sess, pat.span, E0005,
1074             "refutable pattern in {}: `{}` not covered",
1075             origin,
1076             pat_to_string(uncovered_pat),
1077         );
1078     });
1079 }
1080
1081 fn is_refutable<A, F>(cx: &MatchCheckCtxt, pat: &Pat, refutable: F) -> Option<A> where
1082     F: FnOnce(&Pat) -> A,
1083 {
1084     let pats = Matrix(vec!(vec!(wrap_pat(cx, pat))));
1085     match is_useful(cx, &pats, &[(DUMMY_WILD_PAT, None)], ConstructWitness) {
1086         UsefulWithWitness(pats) => Some(refutable(&pats[0])),
1087         NotUseful => None,
1088         Useful => bug!()
1089     }
1090 }
1091
1092 // Legality of move bindings checking
1093 fn check_legality_of_move_bindings(cx: &MatchCheckCtxt,
1094                                    has_guard: bool,
1095                                    pats: &[P<Pat>]) {
1096     let mut by_ref_span = None;
1097     for pat in pats {
1098         pat_bindings(&pat, |bm, _, span, _path| {
1099             if let hir::BindByRef(..) = bm {
1100                 by_ref_span = Some(span);
1101             }
1102         })
1103     }
1104
1105     let check_move = |p: &Pat, sub: Option<&Pat>| {
1106         // check legality of moving out of the enum
1107
1108         // x @ Foo(..) is legal, but x @ Foo(y) isn't.
1109         if sub.map_or(false, |p| pat_contains_bindings(&p)) {
1110             span_err!(cx.tcx.sess, p.span, E0007, "cannot bind by-move with sub-bindings");
1111         } else if has_guard {
1112             span_err!(cx.tcx.sess, p.span, E0008, "cannot bind by-move into a pattern guard");
1113         } else if by_ref_span.is_some() {
1114             let mut err = struct_span_err!(cx.tcx.sess, p.span, E0009,
1115                                            "cannot bind by-move and by-ref in the same pattern");
1116             span_note!(&mut err, by_ref_span.unwrap(), "by-ref binding occurs here");
1117             err.emit();
1118         }
1119     };
1120
1121     for pat in pats {
1122         pat.walk(|p| {
1123             if let PatKind::Binding(hir::BindByValue(..), _, ref sub) = p.node {
1124                 let pat_ty = cx.tcx.node_id_to_type(p.id);
1125                 //FIXME: (@jroesch) this code should be floated up as well
1126                 cx.tcx.infer_ctxt(None, Some(cx.param_env.clone()),
1127                                   ProjectionMode::AnyFinal).enter(|infcx| {
1128                     if infcx.type_moves_by_default(pat_ty, pat.span) {
1129                         check_move(p, sub.as_ref().map(|p| &**p));
1130                     }
1131                 });
1132             }
1133             true
1134         });
1135     }
1136 }
1137
1138 /// Ensures that a pattern guard doesn't borrow by mutable reference or
1139 /// assign.
1140 fn check_for_mutation_in_guard<'a, 'tcx>(cx: &'a MatchCheckCtxt<'a, 'tcx>,
1141                                          guard: &hir::Expr) {
1142     cx.tcx.infer_ctxt(None, Some(cx.param_env.clone()),
1143                       ProjectionMode::AnyFinal).enter(|infcx| {
1144         let mut checker = MutationChecker {
1145             cx: cx,
1146         };
1147         let mut visitor = ExprUseVisitor::new(&mut checker, &infcx);
1148         visitor.walk_expr(guard);
1149     });
1150 }
1151
1152 struct MutationChecker<'a, 'gcx: 'a> {
1153     cx: &'a MatchCheckCtxt<'a, 'gcx>,
1154 }
1155
1156 impl<'a, 'gcx, 'tcx> Delegate<'tcx> for MutationChecker<'a, 'gcx> {
1157     fn matched_pat(&mut self, _: &Pat, _: cmt, _: euv::MatchMode) {}
1158     fn consume(&mut self, _: NodeId, _: Span, _: cmt, _: ConsumeMode) {}
1159     fn consume_pat(&mut self, _: &Pat, _: cmt, _: ConsumeMode) {}
1160     fn borrow(&mut self,
1161               _: NodeId,
1162               span: Span,
1163               _: cmt,
1164               _: Region,
1165               kind: BorrowKind,
1166               _: LoanCause) {
1167         match kind {
1168             MutBorrow => {
1169                 span_err!(self.cx.tcx.sess, span, E0301,
1170                           "cannot mutably borrow in a pattern guard")
1171             }
1172             ImmBorrow | UniqueImmBorrow => {}
1173         }
1174     }
1175     fn decl_without_init(&mut self, _: NodeId, _: Span) {}
1176     fn mutate(&mut self, _: NodeId, span: Span, _: cmt, mode: MutateMode) {
1177         match mode {
1178             MutateMode::JustWrite | MutateMode::WriteAndRead => {
1179                 span_err!(self.cx.tcx.sess, span, E0302, "cannot assign in a pattern guard")
1180             }
1181             MutateMode::Init => {}
1182         }
1183     }
1184 }
1185
1186 /// Forbids bindings in `@` patterns. This is necessary for memory safety,
1187 /// because of the way rvalues are handled in the borrow check. (See issue
1188 /// #14587.)
1189 fn check_legality_of_bindings_in_at_patterns(cx: &MatchCheckCtxt, pat: &Pat) {
1190     AtBindingPatternVisitor { cx: cx, bindings_allowed: true }.visit_pat(pat);
1191 }
1192
1193 struct AtBindingPatternVisitor<'a, 'b:'a, 'tcx:'b> {
1194     cx: &'a MatchCheckCtxt<'b, 'tcx>,
1195     bindings_allowed: bool
1196 }
1197
1198 impl<'a, 'b, 'tcx, 'v> Visitor<'v> for AtBindingPatternVisitor<'a, 'b, 'tcx> {
1199     fn visit_pat(&mut self, pat: &Pat) {
1200         match pat.node {
1201             PatKind::Binding(_, _, ref subpat) => {
1202                 if !self.bindings_allowed {
1203                     span_err!(self.cx.tcx.sess, pat.span, E0303,
1204                               "pattern bindings are not allowed after an `@`");
1205                 }
1206
1207                 if subpat.is_some() {
1208                     let bindings_were_allowed = self.bindings_allowed;
1209                     self.bindings_allowed = false;
1210                     intravisit::walk_pat(self, pat);
1211                     self.bindings_allowed = bindings_were_allowed;
1212                 }
1213             }
1214             _ => intravisit::walk_pat(self, pat),
1215         }
1216     }
1217 }