]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/utils/hir_utils.rs
Merge branch 'master' into move_links
[rust.git] / clippy_lints / src / utils / hir_utils.rs
1 use consts::constant;
2 use rustc::lint::*;
3 use rustc::hir::*;
4 use std::hash::{Hash, Hasher};
5 use std::collections::hash_map::DefaultHasher;
6 use syntax::ast::Name;
7 use syntax::ptr::P;
8 use utils::differing_macro_contexts;
9
10 /// Type used to check whether two ast are the same. This is different from the
11 /// operator
12 /// `==` on ast types as this operator would compare true equality with ID and
13 /// span.
14 ///
15 /// Note that some expressions kinds are not considered but could be added.
16 pub struct SpanlessEq<'a, 'tcx: 'a> {
17     /// Context used to evaluate constant expressions.
18     cx: &'a LateContext<'a, 'tcx>,
19     /// If is true, never consider as equal expressions containing function
20     /// calls.
21     ignore_fn: bool,
22 }
23
24 impl<'a, 'tcx: 'a> SpanlessEq<'a, 'tcx> {
25     pub fn new(cx: &'a LateContext<'a, 'tcx>) -> Self {
26         SpanlessEq {
27             cx: cx,
28             ignore_fn: false,
29         }
30     }
31
32     pub fn ignore_fn(self) -> Self {
33         SpanlessEq {
34             cx: self.cx,
35             ignore_fn: true,
36         }
37     }
38
39     /// Check whether two statements are the same.
40     pub fn eq_stmt(&self, left: &Stmt, right: &Stmt) -> bool {
41         match (&left.node, &right.node) {
42             (&StmtDecl(ref l, _), &StmtDecl(ref r, _)) => {
43                 if let (&DeclLocal(ref l), &DeclLocal(ref r)) = (&l.node, &r.node) {
44                     both(&l.ty, &r.ty, |l, r| self.eq_ty(l, r)) && both(&l.init, &r.init, |l, r| self.eq_expr(l, r))
45                 } else {
46                     false
47                 }
48             },
49             (&StmtExpr(ref l, _), &StmtExpr(ref r, _)) |
50             (&StmtSemi(ref l, _), &StmtSemi(ref r, _)) => self.eq_expr(l, r),
51             _ => false,
52         }
53     }
54
55     /// Check whether two blocks are the same.
56     pub fn eq_block(&self, left: &Block, right: &Block) -> bool {
57         over(&left.stmts, &right.stmts, |l, r| self.eq_stmt(l, r)) &&
58             both(&left.expr, &right.expr, |l, r| self.eq_expr(l, r))
59     }
60
61     pub fn eq_expr(&self, left: &Expr, right: &Expr) -> bool {
62         if self.ignore_fn && differing_macro_contexts(left.span, right.span) {
63             return false;
64         }
65
66         if let (Some(l), Some(r)) = (constant(self.cx, left), constant(self.cx, right)) {
67             if l == r {
68                 return true;
69             }
70         }
71
72         match (&left.node, &right.node) {
73             (&ExprAddrOf(l_mut, ref le), &ExprAddrOf(r_mut, ref re)) => l_mut == r_mut && self.eq_expr(le, re),
74             (&ExprAgain(li), &ExprAgain(ri)) => {
75                 both(&li.ident, &ri.ident, |l, r| l.node.name.as_str() == r.node.name.as_str())
76             },
77             (&ExprAssign(ref ll, ref lr), &ExprAssign(ref rl, ref rr)) => self.eq_expr(ll, rl) && self.eq_expr(lr, rr),
78             (&ExprAssignOp(ref lo, ref ll, ref lr), &ExprAssignOp(ref ro, ref rl, ref rr)) => {
79                 lo.node == ro.node && self.eq_expr(ll, rl) && self.eq_expr(lr, rr)
80             },
81             (&ExprBlock(ref l), &ExprBlock(ref r)) => self.eq_block(l, r),
82             (&ExprBinary(l_op, ref ll, ref lr), &ExprBinary(r_op, ref rl, ref rr)) => {
83                 l_op.node == r_op.node && self.eq_expr(ll, rl) && self.eq_expr(lr, rr) ||
84                     swap_binop(l_op.node, ll, lr).map_or(false, |(l_op, ll, lr)| {
85                         l_op == r_op.node && self.eq_expr(ll, rl) && self.eq_expr(lr, rr)
86                     })
87             },
88             (&ExprBreak(li, ref le), &ExprBreak(ri, ref re)) => {
89                 both(&li.ident, &ri.ident, |l, r| l.node.name.as_str() == r.node.name.as_str()) &&
90                     both(le, re, |l, r| self.eq_expr(l, r))
91             },
92             (&ExprBox(ref l), &ExprBox(ref r)) => self.eq_expr(l, r),
93             (&ExprCall(ref l_fun, ref l_args), &ExprCall(ref r_fun, ref r_args)) => {
94                 !self.ignore_fn && self.eq_expr(l_fun, r_fun) && self.eq_exprs(l_args, r_args)
95             },
96             (&ExprCast(ref lx, ref lt), &ExprCast(ref rx, ref rt)) |
97             (&ExprType(ref lx, ref lt), &ExprType(ref rx, ref rt)) => self.eq_expr(lx, rx) && self.eq_ty(lt, rt),
98             (&ExprField(ref l_f_exp, ref l_f_ident), &ExprField(ref r_f_exp, ref r_f_ident)) => {
99                 l_f_ident.node == r_f_ident.node && self.eq_expr(l_f_exp, r_f_exp)
100             },
101             (&ExprIndex(ref la, ref li), &ExprIndex(ref ra, ref ri)) => self.eq_expr(la, ra) && self.eq_expr(li, ri),
102             (&ExprIf(ref lc, ref lt, ref le), &ExprIf(ref rc, ref rt, ref re)) => {
103                 self.eq_expr(lc, rc) && self.eq_expr(&**lt, &**rt) && both(le, re, |l, r| self.eq_expr(l, r))
104             },
105             (&ExprLit(ref l), &ExprLit(ref r)) => l.node == r.node,
106             (&ExprLoop(ref lb, ref ll, ref lls), &ExprLoop(ref rb, ref rl, ref rls)) => {
107                 lls == rls && self.eq_block(lb, rb) && both(ll, rl, |l, r| l.node.as_str() == r.node.as_str())
108             },
109             (&ExprMatch(ref le, ref la, ref ls), &ExprMatch(ref re, ref ra, ref rs)) => {
110                 ls == rs && self.eq_expr(le, re) &&
111                     over(la, ra, |l, r| {
112                         self.eq_expr(&l.body, &r.body) && both(&l.guard, &r.guard, |l, r| self.eq_expr(l, r)) &&
113                             over(&l.pats, &r.pats, |l, r| self.eq_pat(l, r))
114                     })
115             },
116             (&ExprMethodCall(ref l_path, _, ref l_args), &ExprMethodCall(ref r_path, _, ref r_args)) => {
117                 !self.ignore_fn && l_path == r_path && self.eq_exprs(l_args, r_args)
118             },
119             (&ExprRepeat(ref le, ll_id), &ExprRepeat(ref re, rl_id)) => {
120                 self.eq_expr(le, re) &&
121                     self.eq_expr(&self.cx.tcx.hir.body(ll_id).value, &self.cx.tcx.hir.body(rl_id).value)
122             },
123             (&ExprRet(ref l), &ExprRet(ref r)) => both(l, r, |l, r| self.eq_expr(l, r)),
124             (&ExprPath(ref l), &ExprPath(ref r)) => self.eq_qpath(l, r),
125             (&ExprStruct(ref l_path, ref lf, ref lo), &ExprStruct(ref r_path, ref rf, ref ro)) => {
126                 self.eq_qpath(l_path, r_path) && both(lo, ro, |l, r| self.eq_expr(l, r)) &&
127                     over(lf, rf, |l, r| self.eq_field(l, r))
128             },
129             (&ExprTup(ref l_tup), &ExprTup(ref r_tup)) => self.eq_exprs(l_tup, r_tup),
130             (&ExprTupField(ref le, li), &ExprTupField(ref re, ri)) => li.node == ri.node && self.eq_expr(le, re),
131             (&ExprUnary(l_op, ref le), &ExprUnary(r_op, ref re)) => l_op == r_op && self.eq_expr(le, re),
132             (&ExprArray(ref l), &ExprArray(ref r)) => self.eq_exprs(l, r),
133             (&ExprWhile(ref lc, ref lb, ref ll), &ExprWhile(ref rc, ref rb, ref rl)) => {
134                 self.eq_expr(lc, rc) && self.eq_block(lb, rb) && both(ll, rl, |l, r| l.node.as_str() == r.node.as_str())
135             },
136             _ => false,
137         }
138     }
139
140     fn eq_exprs(&self, left: &P<[Expr]>, right: &P<[Expr]>) -> bool {
141         over(left, right, |l, r| self.eq_expr(l, r))
142     }
143
144     fn eq_field(&self, left: &Field, right: &Field) -> bool {
145         left.name.node == right.name.node && self.eq_expr(&left.expr, &right.expr)
146     }
147
148     fn eq_lifetime(&self, left: &Lifetime, right: &Lifetime) -> bool {
149         left.name == right.name
150     }
151
152     /// Check whether two patterns are the same.
153     pub fn eq_pat(&self, left: &Pat, right: &Pat) -> bool {
154         match (&left.node, &right.node) {
155             (&PatKind::Box(ref l), &PatKind::Box(ref r)) => self.eq_pat(l, r),
156             (&PatKind::TupleStruct(ref lp, ref la, ls), &PatKind::TupleStruct(ref rp, ref ra, rs)) => {
157                 self.eq_qpath(lp, rp) && over(la, ra, |l, r| self.eq_pat(l, r)) && ls == rs
158             },
159             (&PatKind::Binding(ref lb, _, ref li, ref lp), &PatKind::Binding(ref rb, _, ref ri, ref rp)) => {
160                 lb == rb && li.node.as_str() == ri.node.as_str() && both(lp, rp, |l, r| self.eq_pat(l, r))
161             },
162             (&PatKind::Path(ref l), &PatKind::Path(ref r)) => self.eq_qpath(l, r),
163             (&PatKind::Lit(ref l), &PatKind::Lit(ref r)) => self.eq_expr(l, r),
164             (&PatKind::Tuple(ref l, ls), &PatKind::Tuple(ref r, rs)) => {
165                 ls == rs && over(l, r, |l, r| self.eq_pat(l, r))
166             },
167             (&PatKind::Range(ref ls, ref le, ref li), &PatKind::Range(ref rs, ref re, ref ri)) => {
168                 self.eq_expr(ls, rs) && self.eq_expr(le, re) && (*li == *ri)
169             },
170             (&PatKind::Ref(ref le, ref lm), &PatKind::Ref(ref re, ref rm)) => lm == rm && self.eq_pat(le, re),
171             (&PatKind::Slice(ref ls, ref li, ref le), &PatKind::Slice(ref rs, ref ri, ref re)) => {
172                 over(ls, rs, |l, r| self.eq_pat(l, r)) && over(le, re, |l, r| self.eq_pat(l, r)) &&
173                     both(li, ri, |l, r| self.eq_pat(l, r))
174             },
175             (&PatKind::Wild, &PatKind::Wild) => true,
176             _ => false,
177         }
178     }
179
180     fn eq_qpath(&self, left: &QPath, right: &QPath) -> bool {
181         match (left, right) {
182             (&QPath::Resolved(ref lty, ref lpath), &QPath::Resolved(ref rty, ref rpath)) => {
183                 both(lty, rty, |l, r| self.eq_ty(l, r)) && self.eq_path(lpath, rpath)
184             },
185             (&QPath::TypeRelative(ref lty, ref lseg), &QPath::TypeRelative(ref rty, ref rseg)) => {
186                 self.eq_ty(lty, rty) && self.eq_path_segment(lseg, rseg)
187             },
188             _ => false,
189         }
190     }
191
192     fn eq_path(&self, left: &Path, right: &Path) -> bool {
193         left.is_global() == right.is_global() &&
194             over(&left.segments, &right.segments, |l, r| self.eq_path_segment(l, r))
195     }
196
197     fn eq_path_parameters(&self, left: &PathParameters, right: &PathParameters) -> bool {
198         match (left, right) {
199             (&AngleBracketedParameters(ref left), &AngleBracketedParameters(ref right)) => {
200                 over(&left.lifetimes, &right.lifetimes, |l, r| self.eq_lifetime(l, r)) &&
201                     over(&left.types, &right.types, |l, r| self.eq_ty(l, r)) &&
202                     over(&left.bindings, &right.bindings, |l, r| self.eq_type_binding(l, r))
203             },
204             (&ParenthesizedParameters(ref left), &ParenthesizedParameters(ref right)) => {
205                 over(&left.inputs, &right.inputs, |l, r| self.eq_ty(l, r)) &&
206                     both(&left.output, &right.output, |l, r| self.eq_ty(l, r))
207             },
208             (&AngleBracketedParameters(_), &ParenthesizedParameters(_)) |
209             (&ParenthesizedParameters(_), &AngleBracketedParameters(_)) => false,
210         }
211     }
212
213     fn eq_path_segment(&self, left: &PathSegment, right: &PathSegment) -> bool {
214         // The == of idents doesn't work with different contexts,
215         // we have to be explicit about hygiene
216         left.name.as_str() == right.name.as_str() && self.eq_path_parameters(&left.parameters, &right.parameters)
217     }
218
219     fn eq_ty(&self, left: &Ty, right: &Ty) -> bool {
220         match (&left.node, &right.node) {
221             (&TySlice(ref l_vec), &TySlice(ref r_vec)) => self.eq_ty(l_vec, r_vec),
222             (&TyArray(ref lt, ll_id), &TyArray(ref rt, rl_id)) => {
223                 self.eq_ty(lt, rt) &&
224                     self.eq_expr(&self.cx.tcx.hir.body(ll_id).value, &self.cx.tcx.hir.body(rl_id).value)
225             },
226             (&TyPtr(ref l_mut), &TyPtr(ref r_mut)) => l_mut.mutbl == r_mut.mutbl && self.eq_ty(&*l_mut.ty, &*r_mut.ty),
227             (&TyRptr(_, ref l_rmut), &TyRptr(_, ref r_rmut)) => {
228                 l_rmut.mutbl == r_rmut.mutbl && self.eq_ty(&*l_rmut.ty, &*r_rmut.ty)
229             },
230             (&TyPath(ref l), &TyPath(ref r)) => self.eq_qpath(l, r),
231             (&TyTup(ref l), &TyTup(ref r)) => over(l, r, |l, r| self.eq_ty(l, r)),
232             (&TyInfer, &TyInfer) => true,
233             _ => false,
234         }
235     }
236
237     fn eq_type_binding(&self, left: &TypeBinding, right: &TypeBinding) -> bool {
238         left.name == right.name && self.eq_ty(&left.ty, &right.ty)
239     }
240 }
241
242 fn swap_binop<'a>(binop: BinOp_, lhs: &'a Expr, rhs: &'a Expr) -> Option<(BinOp_, &'a Expr, &'a Expr)> {
243     match binop {
244         BiAdd | BiMul | BiBitXor | BiBitAnd | BiEq | BiNe | BiBitOr => Some((binop, rhs, lhs)),
245         BiLt => Some((BiGt, rhs, lhs)),
246         BiLe => Some((BiGe, rhs, lhs)),
247         BiGe => Some((BiLe, rhs, lhs)),
248         BiGt => Some((BiLt, rhs, lhs)),
249         BiShl | BiShr | BiRem | BiSub | BiDiv | BiAnd | BiOr => None,
250     }
251 }
252
253 /// Check if the two `Option`s are both `None` or some equal values as per
254 /// `eq_fn`.
255 fn both<X, F>(l: &Option<X>, r: &Option<X>, mut eq_fn: F) -> bool
256 where
257     F: FnMut(&X, &X) -> bool,
258 {
259     l.as_ref().map_or_else(|| r.is_none(), |x| {
260         r.as_ref().map_or(false, |y| eq_fn(x, y))
261     })
262 }
263
264 /// Check if two slices are equal as per `eq_fn`.
265 fn over<X, F>(left: &[X], right: &[X], mut eq_fn: F) -> bool
266 where
267     F: FnMut(&X, &X) -> bool,
268 {
269     left.len() == right.len() && left.iter().zip(right).all(|(x, y)| eq_fn(x, y))
270 }
271
272
273 /// Type used to hash an ast element. This is different from the `Hash` trait
274 /// on ast types as this
275 /// trait would consider IDs and spans.
276 ///
277 /// All expressions kind are hashed, but some might have a weaker hash.
278 pub struct SpanlessHash<'a, 'tcx: 'a> {
279     /// Context used to evaluate constant expressions.
280     cx: &'a LateContext<'a, 'tcx>,
281     s: DefaultHasher,
282 }
283
284 impl<'a, 'tcx: 'a> SpanlessHash<'a, 'tcx> {
285     pub fn new(cx: &'a LateContext<'a, 'tcx>) -> Self {
286         SpanlessHash {
287             cx: cx,
288             s: DefaultHasher::new(),
289         }
290     }
291
292     pub fn finish(&self) -> u64 {
293         self.s.finish()
294     }
295
296     pub fn hash_block(&mut self, b: &Block) {
297         for s in &b.stmts {
298             self.hash_stmt(s);
299         }
300
301         if let Some(ref e) = b.expr {
302             self.hash_expr(e);
303         }
304
305         b.rules.hash(&mut self.s);
306     }
307
308     pub fn hash_expr(&mut self, e: &Expr) {
309         if let Some(e) = constant(self.cx, e) {
310             return e.hash(&mut self.s);
311         }
312
313         match e.node {
314             ExprAddrOf(m, ref e) => {
315                 let c: fn(_, _) -> _ = ExprAddrOf;
316                 c.hash(&mut self.s);
317                 m.hash(&mut self.s);
318                 self.hash_expr(e);
319             },
320             ExprAgain(i) => {
321                 let c: fn(_) -> _ = ExprAgain;
322                 c.hash(&mut self.s);
323                 if let Some(i) = i.ident {
324                     self.hash_name(&i.node.name);
325                 }
326             },
327             ExprAssign(ref l, ref r) => {
328                 let c: fn(_, _) -> _ = ExprAssign;
329                 c.hash(&mut self.s);
330                 self.hash_expr(l);
331                 self.hash_expr(r);
332             },
333             ExprAssignOp(ref o, ref l, ref r) => {
334                 let c: fn(_, _, _) -> _ = ExprAssignOp;
335                 c.hash(&mut self.s);
336                 o.hash(&mut self.s);
337                 self.hash_expr(l);
338                 self.hash_expr(r);
339             },
340             ExprBlock(ref b) => {
341                 let c: fn(_) -> _ = ExprBlock;
342                 c.hash(&mut self.s);
343                 self.hash_block(b);
344             },
345             ExprBinary(op, ref l, ref r) => {
346                 let c: fn(_, _, _) -> _ = ExprBinary;
347                 c.hash(&mut self.s);
348                 op.node.hash(&mut self.s);
349                 self.hash_expr(l);
350                 self.hash_expr(r);
351             },
352             ExprBreak(i, ref j) => {
353                 let c: fn(_, _) -> _ = ExprBreak;
354                 c.hash(&mut self.s);
355                 if let Some(i) = i.ident {
356                     self.hash_name(&i.node.name);
357                 }
358                 if let Some(ref j) = *j {
359                     self.hash_expr(&*j);
360                 }
361             },
362             ExprBox(ref e) => {
363                 let c: fn(_) -> _ = ExprBox;
364                 c.hash(&mut self.s);
365                 self.hash_expr(e);
366             },
367             ExprCall(ref fun, ref args) => {
368                 let c: fn(_, _) -> _ = ExprCall;
369                 c.hash(&mut self.s);
370                 self.hash_expr(fun);
371                 self.hash_exprs(args);
372             },
373             ExprCast(ref e, ref _ty) => {
374                 let c: fn(_, _) -> _ = ExprCast;
375                 c.hash(&mut self.s);
376                 self.hash_expr(e);
377                 // TODO: _ty
378             },
379             ExprClosure(cap, _, eid, _) => {
380                 let c: fn(_, _, _, _) -> _ = ExprClosure;
381                 c.hash(&mut self.s);
382                 cap.hash(&mut self.s);
383                 self.hash_expr(&self.cx.tcx.hir.body(eid).value);
384             },
385             ExprField(ref e, ref f) => {
386                 let c: fn(_, _) -> _ = ExprField;
387                 c.hash(&mut self.s);
388                 self.hash_expr(e);
389                 self.hash_name(&f.node);
390             },
391             ExprIndex(ref a, ref i) => {
392                 let c: fn(_, _) -> _ = ExprIndex;
393                 c.hash(&mut self.s);
394                 self.hash_expr(a);
395                 self.hash_expr(i);
396             },
397             ExprInlineAsm(..) => {
398                 let c: fn(_, _, _) -> _ = ExprInlineAsm;
399                 c.hash(&mut self.s);
400             },
401             ExprIf(ref cond, ref t, ref e) => {
402                 let c: fn(_, _, _) -> _ = ExprIf;
403                 c.hash(&mut self.s);
404                 self.hash_expr(cond);
405                 self.hash_expr(&**t);
406                 if let Some(ref e) = *e {
407                     self.hash_expr(e);
408                 }
409             },
410             ExprLit(ref l) => {
411                 let c: fn(_) -> _ = ExprLit;
412                 c.hash(&mut self.s);
413                 l.hash(&mut self.s);
414             },
415             ExprLoop(ref b, ref i, _) => {
416                 let c: fn(_, _, _) -> _ = ExprLoop;
417                 c.hash(&mut self.s);
418                 self.hash_block(b);
419                 if let Some(i) = *i {
420                     self.hash_name(&i.node);
421                 }
422             },
423             ExprMatch(ref e, ref arms, ref s) => {
424                 let c: fn(_, _, _) -> _ = ExprMatch;
425                 c.hash(&mut self.s);
426                 self.hash_expr(e);
427
428                 for arm in arms {
429                     // TODO: arm.pat?
430                     if let Some(ref e) = arm.guard {
431                         self.hash_expr(e);
432                     }
433                     self.hash_expr(&arm.body);
434                 }
435
436                 s.hash(&mut self.s);
437             },
438             ExprMethodCall(ref path, ref _tys, ref args) => {
439                 let c: fn(_, _, _) -> _ = ExprMethodCall;
440                 c.hash(&mut self.s);
441                 self.hash_name(&path.name);
442                 self.hash_exprs(args);
443             },
444             ExprRepeat(ref e, l_id) => {
445                 let c: fn(_, _) -> _ = ExprRepeat;
446                 c.hash(&mut self.s);
447                 self.hash_expr(e);
448                 self.hash_expr(&self.cx.tcx.hir.body(l_id).value);
449             },
450             ExprRet(ref e) => {
451                 let c: fn(_) -> _ = ExprRet;
452                 c.hash(&mut self.s);
453                 if let Some(ref e) = *e {
454                     self.hash_expr(e);
455                 }
456             },
457             ExprPath(ref qpath) => {
458                 let c: fn(_) -> _ = ExprPath;
459                 c.hash(&mut self.s);
460                 self.hash_qpath(qpath);
461             },
462             ExprStruct(ref path, ref fields, ref expr) => {
463                 let c: fn(_, _, _) -> _ = ExprStruct;
464                 c.hash(&mut self.s);
465
466                 self.hash_qpath(path);
467
468                 for f in fields {
469                     self.hash_name(&f.name.node);
470                     self.hash_expr(&f.expr);
471                 }
472
473                 if let Some(ref e) = *expr {
474                     self.hash_expr(e);
475                 }
476             },
477             ExprTup(ref tup) => {
478                 let c: fn(_) -> _ = ExprTup;
479                 c.hash(&mut self.s);
480                 self.hash_exprs(tup);
481             },
482             ExprTupField(ref le, li) => {
483                 let c: fn(_, _) -> _ = ExprTupField;
484                 c.hash(&mut self.s);
485
486                 self.hash_expr(le);
487                 li.node.hash(&mut self.s);
488             },
489             ExprType(ref e, ref _ty) => {
490                 let c: fn(_, _) -> _ = ExprType;
491                 c.hash(&mut self.s);
492                 self.hash_expr(e);
493                 // TODO: _ty
494             },
495             ExprUnary(lop, ref le) => {
496                 let c: fn(_, _) -> _ = ExprUnary;
497                 c.hash(&mut self.s);
498
499                 lop.hash(&mut self.s);
500                 self.hash_expr(le);
501             },
502             ExprArray(ref v) => {
503                 let c: fn(_) -> _ = ExprArray;
504                 c.hash(&mut self.s);
505
506                 self.hash_exprs(v);
507             },
508             ExprWhile(ref cond, ref b, l) => {
509                 let c: fn(_, _, _) -> _ = ExprWhile;
510                 c.hash(&mut self.s);
511
512                 self.hash_expr(cond);
513                 self.hash_block(b);
514                 if let Some(l) = l {
515                     self.hash_name(&l.node);
516                 }
517             },
518         }
519     }
520
521     pub fn hash_exprs(&mut self, e: &P<[Expr]>) {
522         for e in e {
523             self.hash_expr(e);
524         }
525     }
526
527     pub fn hash_name(&mut self, n: &Name) {
528         n.as_str().hash(&mut self.s);
529     }
530
531     pub fn hash_qpath(&mut self, p: &QPath) {
532         match *p {
533             QPath::Resolved(_, ref path) => {
534                 self.hash_path(path);
535             },
536             QPath::TypeRelative(_, ref path) => {
537                 self.hash_name(&path.name);
538             },
539         }
540         // self.cx.tables.qpath_def(p, id).hash(&mut self.s);
541     }
542
543     pub fn hash_path(&mut self, p: &Path) {
544         p.is_global().hash(&mut self.s);
545         for p in &p.segments {
546             self.hash_name(&p.name);
547         }
548     }
549
550     pub fn hash_stmt(&mut self, b: &Stmt) {
551         match b.node {
552             StmtDecl(ref decl, _) => {
553                 let c: fn(_, _) -> _ = StmtDecl;
554                 c.hash(&mut self.s);
555
556                 if let DeclLocal(ref local) = decl.node {
557                     if let Some(ref init) = local.init {
558                         self.hash_expr(init);
559                     }
560                 }
561             },
562             StmtExpr(ref expr, _) => {
563                 let c: fn(_, _) -> _ = StmtExpr;
564                 c.hash(&mut self.s);
565                 self.hash_expr(expr);
566             },
567             StmtSemi(ref expr, _) => {
568                 let c: fn(_, _) -> _ = StmtSemi;
569                 c.hash(&mut self.s);
570                 self.hash_expr(expr);
571             },
572         }
573     }
574 }