2018-11-27 20:14:15 +00:00
|
|
|
use crate::consts::{constant_context, constant_simple};
|
2018-05-30 08:15:50 +00:00
|
|
|
use crate::utils::differing_macro_contexts;
|
2019-07-03 16:00:35 +00:00
|
|
|
use rustc::hir::ptr::P;
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc::hir::*;
|
2019-10-22 09:18:18 +00:00
|
|
|
use rustc::ich::StableHashingContextProvider;
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc::lint::LateContext;
|
2019-07-26 15:46:47 +00:00
|
|
|
use rustc::ty::TypeckTables;
|
2019-10-22 09:18:18 +00:00
|
|
|
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
|
|
|
|
use std::hash::Hash;
|
2018-12-29 15:04:45 +00:00
|
|
|
use syntax::ast::Name;
|
2016-02-06 19:13:25 +00:00
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
/// Type used to check whether two ast are the same. This is different from the
|
|
|
|
/// operator
|
|
|
|
/// `==` on ast types as this operator would compare true equality with ID and
|
|
|
|
/// span.
|
2016-02-06 19:13:25 +00:00
|
|
|
///
|
|
|
|
/// Note that some expressions kinds are not considered but could be added.
|
2019-06-19 18:36:23 +00:00
|
|
|
pub struct SpanlessEq<'a, 'tcx> {
|
2016-02-06 19:13:25 +00:00
|
|
|
/// Context used to evaluate constant expressions.
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
2018-05-13 11:16:31 +00:00
|
|
|
tables: &'a TypeckTables<'tcx>,
|
2017-08-09 07:30:56 +00:00
|
|
|
/// If is true, never consider as equal expressions containing function
|
|
|
|
/// calls.
|
2016-02-06 19:13:25 +00:00
|
|
|
ignore_fn: bool,
|
|
|
|
}
|
|
|
|
|
2019-06-19 18:36:23 +00:00
|
|
|
impl<'a, 'tcx> SpanlessEq<'a, 'tcx> {
|
2016-02-06 19:13:25 +00:00
|
|
|
pub fn new(cx: &'a LateContext<'a, 'tcx>) -> Self {
|
2017-08-21 11:32:12 +00:00
|
|
|
Self {
|
2018-03-15 15:07:15 +00:00
|
|
|
cx,
|
2018-05-13 11:16:31 +00:00
|
|
|
tables: cx.tables,
|
2016-02-24 16:38:57 +00:00
|
|
|
ignore_fn: false,
|
|
|
|
}
|
2016-02-06 19:13:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn ignore_fn(self) -> Self {
|
2017-08-21 11:32:12 +00:00
|
|
|
Self {
|
2016-02-24 16:38:57 +00:00
|
|
|
cx: self.cx,
|
2018-05-13 11:16:31 +00:00
|
|
|
tables: self.cx.tables,
|
2016-02-24 16:38:57 +00:00
|
|
|
ignore_fn: true,
|
|
|
|
}
|
2016-02-06 19:13:25 +00:00
|
|
|
}
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
/// Checks whether two statements are the same.
|
2018-05-17 18:17:21 +00:00
|
|
|
pub fn eq_stmt(&mut self, left: &Stmt, right: &Stmt) -> bool {
|
2019-09-27 15:16:06 +00:00
|
|
|
match (&left.kind, &right.kind) {
|
2019-01-20 10:49:45 +00:00
|
|
|
(&StmtKind::Local(ref l), &StmtKind::Local(ref r)) => {
|
2019-01-20 10:21:30 +00:00
|
|
|
self.eq_pat(&l.pat, &r.pat)
|
2019-07-24 21:59:32 +00:00
|
|
|
&& both(&l.ty, &r.ty, |l, r| self.eq_ty(l, r))
|
2019-01-20 10:21:30 +00:00
|
|
|
&& both(&l.init, &r.init, |l, r| self.eq_expr(l, r))
|
2019-01-20 10:49:45 +00:00
|
|
|
},
|
|
|
|
(&StmtKind::Expr(ref l), &StmtKind::Expr(ref r)) | (&StmtKind::Semi(ref l), &StmtKind::Semi(ref r)) => {
|
|
|
|
self.eq_expr(l, r)
|
|
|
|
},
|
2016-02-06 19:13:25 +00:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
/// Checks whether two blocks are the same.
|
2018-05-17 18:17:21 +00:00
|
|
|
pub fn eq_block(&mut self, left: &Block, right: &Block) -> bool {
|
2017-11-04 19:55:56 +00:00
|
|
|
over(&left.stmts, &right.stmts, |l, r| self.eq_stmt(l, r))
|
|
|
|
&& both(&left.expr, &right.expr, |l, r| self.eq_expr(l, r))
|
2016-02-06 19:13:25 +00:00
|
|
|
}
|
|
|
|
|
2018-10-11 22:18:58 +00:00
|
|
|
#[allow(clippy::similar_names)]
|
2018-05-17 18:17:21 +00:00
|
|
|
pub fn eq_expr(&mut self, left: &Expr, right: &Expr) -> bool {
|
2016-02-13 14:36:57 +00:00
|
|
|
if self.ignore_fn && differing_macro_contexts(left.span, right.span) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-11-27 20:14:15 +00:00
|
|
|
if let (Some(l), Some(r)) = (
|
|
|
|
constant_simple(self.cx, self.tables, left),
|
|
|
|
constant_simple(self.cx, self.tables, right),
|
|
|
|
) {
|
2016-02-06 19:13:25 +00:00
|
|
|
if l == r {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 15:16:06 +00:00
|
|
|
match (&left.kind, &right.kind) {
|
2019-11-27 22:34:32 +00:00
|
|
|
(&ExprKind::AddrOf(lb, l_mut, ref le), &ExprKind::AddrOf(rb, r_mut, ref re)) => {
|
|
|
|
lb == rb && l_mut == r_mut && self.eq_expr(le, re)
|
2018-11-27 20:14:15 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::Continue(li), &ExprKind::Continue(ri)) => {
|
2018-06-28 13:46:58 +00:00
|
|
|
both(&li.label, &ri.label, |l, r| l.ident.as_str() == r.ident.as_str())
|
2017-02-27 08:49:02 +00:00
|
|
|
},
|
2018-11-27 20:14:15 +00:00
|
|
|
(&ExprKind::Assign(ref ll, ref lr), &ExprKind::Assign(ref rl, ref rr)) => {
|
|
|
|
self.eq_expr(ll, rl) && self.eq_expr(lr, rr)
|
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::AssignOp(ref lo, ref ll, ref lr), &ExprKind::AssignOp(ref ro, ref rl, ref rr)) => {
|
2016-02-06 19:13:25 +00:00
|
|
|
lo.node == ro.node && self.eq_expr(ll, rl) && self.eq_expr(lr, rr)
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::Block(ref l, _), &ExprKind::Block(ref r, _)) => self.eq_block(l, r),
|
|
|
|
(&ExprKind::Binary(l_op, ref ll, ref lr), &ExprKind::Binary(r_op, ref rl, ref rr)) => {
|
2017-11-04 19:55:56 +00:00
|
|
|
l_op.node == r_op.node && self.eq_expr(ll, rl) && self.eq_expr(lr, rr)
|
|
|
|
|| swap_binop(l_op.node, ll, lr).map_or(false, |(l_op, ll, lr)| {
|
2017-08-09 07:30:56 +00:00
|
|
|
l_op == r_op.node && self.eq_expr(ll, rl) && self.eq_expr(lr, rr)
|
|
|
|
})
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::Break(li, ref le), &ExprKind::Break(ri, ref re)) => {
|
2018-06-28 13:46:58 +00:00
|
|
|
both(&li.label, &ri.label, |l, r| l.ident.as_str() == r.ident.as_str())
|
2017-11-04 19:55:56 +00:00
|
|
|
&& both(le, re, |l, r| self.eq_expr(l, r))
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::Box(ref l), &ExprKind::Box(ref r)) => self.eq_expr(l, r),
|
|
|
|
(&ExprKind::Call(ref l_fun, ref l_args), &ExprKind::Call(ref r_fun, ref r_args)) => {
|
2016-03-01 09:13:54 +00:00
|
|
|
!self.ignore_fn && self.eq_expr(l_fun, r_fun) && self.eq_exprs(l_args, r_args)
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-11-27 20:14:15 +00:00
|
|
|
(&ExprKind::Cast(ref lx, ref lt), &ExprKind::Cast(ref rx, ref rt))
|
|
|
|
| (&ExprKind::Type(ref lx, ref lt), &ExprKind::Type(ref rx, ref rt)) => {
|
|
|
|
self.eq_expr(lx, rx) && self.eq_ty(lt, rt)
|
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::Field(ref l_f_exp, ref l_f_ident), &ExprKind::Field(ref r_f_exp, ref r_f_ident)) => {
|
2018-05-29 08:56:58 +00:00
|
|
|
l_f_ident.name == r_f_ident.name && self.eq_expr(l_f_exp, r_f_exp)
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-11-27 20:14:15 +00:00
|
|
|
(&ExprKind::Index(ref la, ref li), &ExprKind::Index(ref ra, ref ri)) => {
|
|
|
|
self.eq_expr(la, ra) && self.eq_expr(li, ri)
|
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::Lit(ref l), &ExprKind::Lit(ref r)) => l.node == r.node,
|
|
|
|
(&ExprKind::Loop(ref lb, ref ll, ref lls), &ExprKind::Loop(ref rb, ref rl, ref rls)) => {
|
2018-06-28 13:46:58 +00:00
|
|
|
lls == rls && self.eq_block(lb, rb) && both(ll, rl, |l, r| l.ident.as_str() == r.ident.as_str())
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::Match(ref le, ref la, ref ls), &ExprKind::Match(ref re, ref ra, ref rs)) => {
|
2018-11-27 20:14:15 +00:00
|
|
|
ls == rs
|
|
|
|
&& self.eq_expr(le, re)
|
|
|
|
&& over(la, ra, |l, r| {
|
|
|
|
self.eq_expr(&l.body, &r.body)
|
|
|
|
&& both(&l.guard, &r.guard, |l, r| self.eq_guard(l, r))
|
2019-09-25 19:00:17 +00:00
|
|
|
&& self.eq_pat(&l.pat, &r.pat)
|
2018-11-27 20:14:15 +00:00
|
|
|
})
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::MethodCall(ref l_path, _, ref l_args), &ExprKind::MethodCall(ref r_path, _, ref r_args)) => {
|
2018-07-14 22:00:27 +00:00
|
|
|
!self.ignore_fn && self.eq_path_segment(l_path, r_path) && self.eq_exprs(l_args, r_args)
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::Repeat(ref le, ref ll_id), &ExprKind::Repeat(ref re, ref rl_id)) => {
|
2018-05-22 13:45:14 +00:00
|
|
|
let mut celcx = constant_context(self.cx, self.cx.tcx.body_tables(ll_id.body));
|
2018-12-08 00:56:03 +00:00
|
|
|
let ll = celcx.expr(&self.cx.tcx.hir().body(ll_id.body).value);
|
2018-05-22 13:45:14 +00:00
|
|
|
let mut celcx = constant_context(self.cx, self.cx.tcx.body_tables(rl_id.body));
|
2018-12-08 00:56:03 +00:00
|
|
|
let rl = celcx.expr(&self.cx.tcx.hir().body(rl_id.body).value);
|
2018-02-05 23:31:06 +00:00
|
|
|
|
|
|
|
self.eq_expr(le, re) && ll == rl
|
2017-01-04 23:53:16 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::Ret(ref l), &ExprKind::Ret(ref r)) => both(l, r, |l, r| self.eq_expr(l, r)),
|
|
|
|
(&ExprKind::Path(ref l), &ExprKind::Path(ref r)) => self.eq_qpath(l, r),
|
|
|
|
(&ExprKind::Struct(ref l_path, ref lf, ref lo), &ExprKind::Struct(ref r_path, ref rf, ref ro)) => {
|
2018-11-27 20:14:15 +00:00
|
|
|
self.eq_qpath(l_path, r_path)
|
|
|
|
&& both(lo, ro, |l, r| self.eq_expr(l, r))
|
2017-11-04 19:55:56 +00:00
|
|
|
&& over(lf, rf, |l, r| self.eq_field(l, r))
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::Tup(ref l_tup), &ExprKind::Tup(ref r_tup)) => self.eq_exprs(l_tup, r_tup),
|
|
|
|
(&ExprKind::Unary(l_op, ref le), &ExprKind::Unary(r_op, ref re)) => l_op == r_op && self.eq_expr(le, re),
|
|
|
|
(&ExprKind::Array(ref l), &ExprKind::Array(ref r)) => self.eq_exprs(l, r),
|
2019-05-01 20:18:05 +00:00
|
|
|
(&ExprKind::DropTemps(ref le), &ExprKind::DropTemps(ref re)) => self.eq_expr(le, re),
|
2016-02-06 19:13:25 +00:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-17 18:17:21 +00:00
|
|
|
fn eq_exprs(&mut self, left: &P<[Expr]>, right: &P<[Expr]>) -> bool {
|
2016-02-06 19:13:25 +00:00
|
|
|
over(left, right, |l, r| self.eq_expr(l, r))
|
|
|
|
}
|
|
|
|
|
2018-05-17 18:17:21 +00:00
|
|
|
fn eq_field(&mut self, left: &Field, right: &Field) -> bool {
|
2018-05-29 08:56:58 +00:00
|
|
|
left.ident.name == right.ident.name && self.eq_expr(&left.expr, &right.expr)
|
2016-03-07 15:30:02 +00:00
|
|
|
}
|
|
|
|
|
2018-09-02 07:38:25 +00:00
|
|
|
fn eq_guard(&mut self, left: &Guard, right: &Guard) -> bool {
|
|
|
|
match (left, right) {
|
|
|
|
(Guard::If(l), Guard::If(r)) => self.eq_expr(l, r),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-24 21:42:52 +00:00
|
|
|
fn eq_generic_arg(&mut self, left: &GenericArg, right: &GenericArg) -> bool {
|
|
|
|
match (left, right) {
|
2019-10-03 19:09:32 +00:00
|
|
|
(GenericArg::Lifetime(l_lt), GenericArg::Lifetime(r_lt)) => Self::eq_lifetime(l_lt, r_lt),
|
2018-06-24 21:42:52 +00:00
|
|
|
(GenericArg::Type(l_ty), GenericArg::Type(r_ty)) => self.eq_ty(l_ty, r_ty),
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-03 19:09:32 +00:00
|
|
|
fn eq_lifetime(left: &Lifetime, right: &Lifetime) -> bool {
|
2016-12-02 19:54:05 +00:00
|
|
|
left.name == right.name
|
|
|
|
}
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
/// Checks whether two patterns are the same.
|
2018-05-17 18:17:21 +00:00
|
|
|
pub fn eq_pat(&mut self, left: &Pat, right: &Pat) -> bool {
|
2019-09-27 15:16:06 +00:00
|
|
|
match (&left.kind, &right.kind) {
|
2016-02-29 11:19:32 +00:00
|
|
|
(&PatKind::Box(ref l), &PatKind::Box(ref r)) => self.eq_pat(l, r),
|
2016-05-27 12:24:28 +00:00
|
|
|
(&PatKind::TupleStruct(ref lp, ref la, ls), &PatKind::TupleStruct(ref rp, ref ra, rs)) => {
|
2016-12-02 19:54:05 +00:00
|
|
|
self.eq_qpath(lp, rp) && over(la, ra, |l, r| self.eq_pat(l, r)) && ls == rs
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2019-02-03 07:12:07 +00:00
|
|
|
(&PatKind::Binding(ref lb, .., ref li, ref lp), &PatKind::Binding(ref rb, .., ref ri, ref rp)) => {
|
2018-06-28 13:46:58 +00:00
|
|
|
lb == rb && li.name.as_str() == ri.name.as_str() && both(lp, rp, |l, r| self.eq_pat(l, r))
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-12-02 19:54:05 +00:00
|
|
|
(&PatKind::Path(ref l), &PatKind::Path(ref r)) => self.eq_qpath(l, r),
|
2016-07-10 13:42:02 +00:00
|
|
|
(&PatKind::Lit(ref l), &PatKind::Lit(ref r)) => self.eq_expr(l, r),
|
2016-06-05 23:42:39 +00:00
|
|
|
(&PatKind::Tuple(ref l, ls), &PatKind::Tuple(ref r, rs)) => {
|
|
|
|
ls == rs && over(l, r, |l, r| self.eq_pat(l, r))
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2017-01-26 22:32:34 +00:00
|
|
|
(&PatKind::Range(ref ls, ref le, ref li), &PatKind::Range(ref rs, ref re, ref ri)) => {
|
|
|
|
self.eq_expr(ls, rs) && self.eq_expr(le, re) && (*li == *ri)
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-02-29 11:19:32 +00:00
|
|
|
(&PatKind::Ref(ref le, ref lm), &PatKind::Ref(ref re, ref rm)) => lm == rm && self.eq_pat(le, re),
|
2016-09-30 13:35:24 +00:00
|
|
|
(&PatKind::Slice(ref ls, ref li, ref le), &PatKind::Slice(ref rs, ref ri, ref re)) => {
|
2018-11-27 20:14:15 +00:00
|
|
|
over(ls, rs, |l, r| self.eq_pat(l, r))
|
|
|
|
&& over(le, re, |l, r| self.eq_pat(l, r))
|
2017-11-04 19:55:56 +00:00
|
|
|
&& both(li, ri, |l, r| self.eq_pat(l, r))
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-02-18 20:16:39 +00:00
|
|
|
(&PatKind::Wild, &PatKind::Wild) => true,
|
2016-02-06 19:13:25 +00:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-11 22:18:58 +00:00
|
|
|
#[allow(clippy::similar_names)]
|
2018-05-17 18:17:21 +00:00
|
|
|
fn eq_qpath(&mut self, left: &QPath, right: &QPath) -> bool {
|
2016-12-02 19:54:05 +00:00
|
|
|
match (left, right) {
|
|
|
|
(&QPath::Resolved(ref lty, ref lpath), &QPath::Resolved(ref rty, ref rpath)) => {
|
|
|
|
both(lty, rty, |l, r| self.eq_ty(l, r)) && self.eq_path(lpath, rpath)
|
|
|
|
},
|
|
|
|
(&QPath::TypeRelative(ref lty, ref lseg), &QPath::TypeRelative(ref rty, ref rseg)) => {
|
|
|
|
self.eq_ty(lty, rty) && self.eq_path_segment(lseg, rseg)
|
|
|
|
},
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-17 18:17:21 +00:00
|
|
|
fn eq_path(&mut self, left: &Path, right: &Path) -> bool {
|
2017-11-04 19:55:56 +00:00
|
|
|
left.is_global() == right.is_global()
|
|
|
|
&& over(&left.segments, &right.segments, |l, r| self.eq_path_segment(l, r))
|
2016-12-02 19:54:05 +00:00
|
|
|
}
|
2016-10-01 20:18:17 +00:00
|
|
|
|
2018-06-24 13:32:40 +00:00
|
|
|
fn eq_path_parameters(&mut self, left: &GenericArgs, right: &GenericArgs) -> bool {
|
2017-08-25 07:30:21 +00:00
|
|
|
if !(left.parenthesized || right.parenthesized) {
|
2018-06-24 21:42:52 +00:00
|
|
|
over(&left.args, &right.args, |l, r| self.eq_generic_arg(l, r)) // FIXME(flip1995): may not work
|
2017-11-04 19:55:56 +00:00
|
|
|
&& over(&left.bindings, &right.bindings, |l, r| self.eq_type_binding(l, r))
|
2017-08-25 07:30:21 +00:00
|
|
|
} else if left.parenthesized && right.parenthesized {
|
2017-11-04 19:55:56 +00:00
|
|
|
over(left.inputs(), right.inputs(), |l, r| self.eq_ty(l, r))
|
2019-06-06 07:21:19 +00:00
|
|
|
&& both(&Some(&left.bindings[0].ty()), &Some(&right.bindings[0].ty()), |l, r| {
|
2018-11-27 20:14:15 +00:00
|
|
|
self.eq_ty(l, r)
|
|
|
|
})
|
2017-08-25 07:30:21 +00:00
|
|
|
} else {
|
|
|
|
false
|
2016-10-01 20:18:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-14 22:00:27 +00:00
|
|
|
pub fn eq_path_segments(&mut self, left: &[PathSegment], right: &[PathSegment]) -> bool {
|
|
|
|
left.len() == right.len() && left.iter().zip(right).all(|(l, r)| self.eq_path_segment(l, r))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn eq_path_segment(&mut self, left: &PathSegment, right: &PathSegment) -> bool {
|
2016-12-02 19:54:05 +00:00
|
|
|
// The == of idents doesn't work with different contexts,
|
|
|
|
// we have to be explicit about hygiene
|
2018-06-28 13:46:58 +00:00
|
|
|
if left.ident.as_str() != right.ident.as_str() {
|
2017-09-26 02:04:55 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-06-24 13:32:40 +00:00
|
|
|
match (&left.args, &right.args) {
|
2017-09-26 02:04:55 +00:00
|
|
|
(&None, &None) => true,
|
|
|
|
(&Some(ref l), &Some(ref r)) => self.eq_path_parameters(l, r),
|
2017-11-04 19:55:56 +00:00
|
|
|
_ => false,
|
2017-09-26 02:04:55 +00:00
|
|
|
}
|
2016-12-02 19:54:05 +00:00
|
|
|
}
|
|
|
|
|
2019-07-24 21:59:32 +00:00
|
|
|
pub fn eq_ty(&mut self, left: &Ty, right: &Ty) -> bool {
|
2019-09-27 15:16:06 +00:00
|
|
|
self.eq_ty_kind(&left.kind, &right.kind)
|
2018-07-14 22:00:27 +00:00
|
|
|
}
|
|
|
|
|
2018-10-11 22:18:58 +00:00
|
|
|
#[allow(clippy::similar_names)]
|
2018-07-12 08:03:06 +00:00
|
|
|
pub fn eq_ty_kind(&mut self, left: &TyKind, right: &TyKind) -> bool {
|
2018-07-14 22:00:27 +00:00
|
|
|
match (left, right) {
|
2018-07-12 08:03:06 +00:00
|
|
|
(&TyKind::Slice(ref l_vec), &TyKind::Slice(ref r_vec)) => self.eq_ty(l_vec, r_vec),
|
|
|
|
(&TyKind::Array(ref lt, ref ll_id), &TyKind::Array(ref rt, ref rl_id)) => {
|
2018-05-17 18:17:21 +00:00
|
|
|
let full_table = self.tables;
|
|
|
|
|
2018-05-22 13:45:14 +00:00
|
|
|
let mut celcx = constant_context(self.cx, self.cx.tcx.body_tables(ll_id.body));
|
|
|
|
self.tables = self.cx.tcx.body_tables(ll_id.body);
|
2018-12-08 00:56:03 +00:00
|
|
|
let ll = celcx.expr(&self.cx.tcx.hir().body(ll_id.body).value);
|
2018-05-17 18:17:21 +00:00
|
|
|
|
2018-05-22 13:45:14 +00:00
|
|
|
let mut celcx = constant_context(self.cx, self.cx.tcx.body_tables(rl_id.body));
|
|
|
|
self.tables = self.cx.tcx.body_tables(rl_id.body);
|
2018-12-08 00:56:03 +00:00
|
|
|
let rl = celcx.expr(&self.cx.tcx.hir().body(rl_id.body).value);
|
2018-05-17 18:17:21 +00:00
|
|
|
|
|
|
|
let eq_ty = self.eq_ty(lt, rt);
|
|
|
|
self.tables = full_table;
|
|
|
|
eq_ty && ll == rl
|
2017-01-04 23:53:16 +00:00
|
|
|
},
|
2018-11-27 20:14:15 +00:00
|
|
|
(&TyKind::Ptr(ref l_mut), &TyKind::Ptr(ref r_mut)) => {
|
|
|
|
l_mut.mutbl == r_mut.mutbl && self.eq_ty(&*l_mut.ty, &*r_mut.ty)
|
|
|
|
},
|
2018-07-12 08:03:06 +00:00
|
|
|
(&TyKind::Rptr(_, ref l_rmut), &TyKind::Rptr(_, ref r_rmut)) => {
|
2016-03-01 09:13:54 +00:00
|
|
|
l_rmut.mutbl == r_rmut.mutbl && self.eq_ty(&*l_rmut.ty, &*r_rmut.ty)
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 08:03:06 +00:00
|
|
|
(&TyKind::Path(ref l), &TyKind::Path(ref r)) => self.eq_qpath(l, r),
|
|
|
|
(&TyKind::Tup(ref l), &TyKind::Tup(ref r)) => over(l, r, |l, r| self.eq_ty(l, r)),
|
|
|
|
(&TyKind::Infer, &TyKind::Infer) => true,
|
2016-02-06 19:13:25 +00:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
2016-12-02 19:54:05 +00:00
|
|
|
|
2018-05-17 18:17:21 +00:00
|
|
|
fn eq_type_binding(&mut self, left: &TypeBinding, right: &TypeBinding) -> bool {
|
2019-06-06 07:21:19 +00:00
|
|
|
left.ident.name == right.ident.name && self.eq_ty(&left.ty(), &right.ty())
|
2016-12-02 19:54:05 +00:00
|
|
|
}
|
2016-02-06 19:13:25 +00:00
|
|
|
}
|
|
|
|
|
2018-07-12 07:50:09 +00:00
|
|
|
fn swap_binop<'a>(binop: BinOpKind, lhs: &'a Expr, rhs: &'a Expr) -> Option<(BinOpKind, &'a Expr, &'a Expr)> {
|
2016-03-24 15:11:38 +00:00
|
|
|
match binop {
|
2018-11-27 20:14:15 +00:00
|
|
|
BinOpKind::Add
|
|
|
|
| BinOpKind::Mul
|
|
|
|
| BinOpKind::Eq
|
|
|
|
| BinOpKind::Ne
|
|
|
|
| BinOpKind::BitAnd
|
|
|
|
| BinOpKind::BitXor
|
|
|
|
| BinOpKind::BitOr => Some((binop, rhs, lhs)),
|
2018-07-12 07:50:09 +00:00
|
|
|
BinOpKind::Lt => Some((BinOpKind::Gt, rhs, lhs)),
|
|
|
|
BinOpKind::Le => Some((BinOpKind::Ge, rhs, lhs)),
|
|
|
|
BinOpKind::Ge => Some((BinOpKind::Le, rhs, lhs)),
|
|
|
|
BinOpKind::Gt => Some((BinOpKind::Lt, rhs, lhs)),
|
2018-11-27 20:14:15 +00:00
|
|
|
BinOpKind::Shl
|
|
|
|
| BinOpKind::Shr
|
|
|
|
| BinOpKind::Rem
|
|
|
|
| BinOpKind::Sub
|
|
|
|
| BinOpKind::Div
|
|
|
|
| BinOpKind::And
|
|
|
|
| BinOpKind::Or => None,
|
2016-03-24 15:11:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
/// Checks if the two `Option`s are both `None` or some equal values as per
|
2017-08-09 07:30:56 +00:00
|
|
|
/// `eq_fn`.
|
2016-02-06 19:13:25 +00:00
|
|
|
fn both<X, F>(l: &Option<X>, r: &Option<X>, mut eq_fn: F) -> bool
|
2017-08-09 07:30:56 +00:00
|
|
|
where
|
|
|
|
F: FnMut(&X, &X) -> bool,
|
2016-02-06 19:13:25 +00:00
|
|
|
{
|
2017-09-05 09:33:04 +00:00
|
|
|
l.as_ref()
|
|
|
|
.map_or_else(|| r.is_none(), |x| r.as_ref().map_or(false, |y| eq_fn(x, y)))
|
2016-02-06 19:13:25 +00:00
|
|
|
}
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
/// Checks if two slices are equal as per `eq_fn`.
|
2016-02-06 19:13:25 +00:00
|
|
|
fn over<X, F>(left: &[X], right: &[X], mut eq_fn: F) -> bool
|
2017-08-09 07:30:56 +00:00
|
|
|
where
|
|
|
|
F: FnMut(&X, &X) -> bool,
|
2016-02-06 19:13:25 +00:00
|
|
|
{
|
|
|
|
left.len() == right.len() && left.iter().zip(right).all(|(x, y)| eq_fn(x, y))
|
|
|
|
}
|
2016-02-09 14:18:27 +00:00
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
/// Type used to hash an ast element. This is different from the `Hash` trait
|
|
|
|
/// on ast types as this
|
2016-02-09 15:45:47 +00:00
|
|
|
/// trait would consider IDs and spans.
|
|
|
|
///
|
|
|
|
/// All expressions kind are hashed, but some might have a weaker hash.
|
2019-06-19 18:36:23 +00:00
|
|
|
pub struct SpanlessHash<'a, 'tcx> {
|
2016-02-09 14:18:27 +00:00
|
|
|
/// Context used to evaluate constant expressions.
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
2018-05-13 11:16:31 +00:00
|
|
|
tables: &'a TypeckTables<'tcx>,
|
2019-10-22 09:18:18 +00:00
|
|
|
s: StableHasher,
|
2016-02-09 14:18:27 +00:00
|
|
|
}
|
|
|
|
|
2019-06-19 18:36:23 +00:00
|
|
|
impl<'a, 'tcx> SpanlessHash<'a, 'tcx> {
|
2018-05-13 11:16:31 +00:00
|
|
|
pub fn new(cx: &'a LateContext<'a, 'tcx>, tables: &'a TypeckTables<'tcx>) -> Self {
|
2017-08-21 11:32:12 +00:00
|
|
|
Self {
|
2018-03-15 15:07:15 +00:00
|
|
|
cx,
|
2018-05-13 11:16:31 +00:00
|
|
|
tables,
|
2019-10-22 09:18:18 +00:00
|
|
|
s: StableHasher::new(),
|
2016-02-24 16:38:57 +00:00
|
|
|
}
|
2016-02-09 14:18:27 +00:00
|
|
|
}
|
|
|
|
|
2019-10-22 09:18:18 +00:00
|
|
|
pub fn finish(self) -> u64 {
|
2016-02-09 14:18:27 +00:00
|
|
|
self.s.finish()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn hash_block(&mut self, b: &Block) {
|
|
|
|
for s in &b.stmts {
|
|
|
|
self.hash_stmt(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(ref e) = b.expr {
|
|
|
|
self.hash_expr(e);
|
|
|
|
}
|
|
|
|
|
2018-07-14 22:00:27 +00:00
|
|
|
match b.rules {
|
|
|
|
BlockCheckMode::DefaultBlock => 0,
|
|
|
|
BlockCheckMode::UnsafeBlock(_) => 1,
|
|
|
|
BlockCheckMode::PushUnsafeBlock(_) => 2,
|
|
|
|
BlockCheckMode::PopUnsafeBlock(_) => 3,
|
2018-11-27 20:14:15 +00:00
|
|
|
}
|
|
|
|
.hash(&mut self.s);
|
2016-02-09 14:18:27 +00:00
|
|
|
}
|
|
|
|
|
2019-01-13 15:19:02 +00:00
|
|
|
#[allow(clippy::many_single_char_names, clippy::too_many_lines)]
|
2016-02-09 14:18:27 +00:00
|
|
|
pub fn hash_expr(&mut self, e: &Expr) {
|
2019-05-07 12:48:00 +00:00
|
|
|
let simple_const = constant_simple(self.cx, self.tables, e);
|
|
|
|
|
|
|
|
// const hashing may result in the same hash as some unrelated node, so add a sort of
|
|
|
|
// discriminant depending on which path we're choosing next
|
|
|
|
simple_const.is_some().hash(&mut self.s);
|
|
|
|
|
|
|
|
if let Some(e) = simple_const {
|
2016-02-09 14:18:27 +00:00
|
|
|
return e.hash(&mut self.s);
|
|
|
|
}
|
|
|
|
|
2019-09-27 15:16:06 +00:00
|
|
|
std::mem::discriminant(&e.kind).hash(&mut self.s);
|
2019-05-07 12:48:00 +00:00
|
|
|
|
2019-09-27 15:16:06 +00:00
|
|
|
match e.kind {
|
2019-11-27 22:34:32 +00:00
|
|
|
ExprKind::AddrOf(kind, m, ref e) => {
|
|
|
|
match kind {
|
|
|
|
BorrowKind::Ref => 0,
|
|
|
|
BorrowKind::Raw => 1,
|
|
|
|
}
|
|
|
|
.hash(&mut self.s);
|
2016-02-09 14:18:27 +00:00
|
|
|
m.hash(&mut self.s);
|
|
|
|
self.hash_expr(e);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Continue(i) => {
|
2018-01-27 12:57:31 +00:00
|
|
|
if let Some(i) = i.label {
|
2018-06-28 13:46:58 +00:00
|
|
|
self.hash_name(i.ident.name);
|
2016-02-09 14:18:27 +00:00
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Assign(ref l, ref r) => {
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_expr(l);
|
|
|
|
self.hash_expr(r);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::AssignOp(ref o, ref l, ref r) => {
|
2019-10-22 09:18:18 +00:00
|
|
|
o.node
|
|
|
|
.hash_stable(&mut self.cx.tcx.get_stable_hashing_context(), &mut self.s);
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_expr(l);
|
|
|
|
self.hash_expr(r);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Block(ref b, _) => {
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_block(b);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Binary(op, ref l, ref r) => {
|
2019-10-22 09:18:18 +00:00
|
|
|
op.node
|
|
|
|
.hash_stable(&mut self.cx.tcx.get_stable_hashing_context(), &mut self.s);
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_expr(l);
|
|
|
|
self.hash_expr(r);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Break(i, ref j) => {
|
2018-01-27 12:57:31 +00:00
|
|
|
if let Some(i) = i.label {
|
2018-06-28 13:46:58 +00:00
|
|
|
self.hash_name(i.ident.name);
|
2016-02-09 14:18:27 +00:00
|
|
|
}
|
2016-11-25 18:24:55 +00:00
|
|
|
if let Some(ref j) = *j {
|
|
|
|
self.hash_expr(&*j);
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2019-06-19 09:59:25 +00:00
|
|
|
ExprKind::Box(ref e) | ExprKind::DropTemps(ref e) | ExprKind::Yield(ref e, _) => {
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_expr(e);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Call(ref fun, ref args) => {
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_expr(fun);
|
|
|
|
self.hash_exprs(args);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2019-07-28 08:31:05 +00:00
|
|
|
ExprKind::Cast(ref e, ref ty) | ExprKind::Type(ref e, ref ty) => {
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_expr(e);
|
2019-02-15 20:21:13 +00:00
|
|
|
self.hash_ty(ty);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Closure(cap, _, eid, _, _) => {
|
2018-07-14 22:00:27 +00:00
|
|
|
match cap {
|
2019-11-11 17:24:12 +00:00
|
|
|
CaptureBy::Value => 0,
|
|
|
|
CaptureBy::Ref => 1,
|
2018-11-27 20:14:15 +00:00
|
|
|
}
|
|
|
|
.hash(&mut self.s);
|
2019-11-05 01:03:03 +00:00
|
|
|
// closures inherit TypeckTables
|
2018-12-08 00:56:03 +00:00
|
|
|
self.hash_expr(&self.cx.tcx.hir().body(eid).value);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Field(ref e, ref f) => {
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_expr(e);
|
2018-05-31 18:15:48 +00:00
|
|
|
self.hash_name(f.name);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Index(ref a, ref i) => {
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_expr(a);
|
|
|
|
self.hash_expr(i);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2019-05-14 13:08:29 +00:00
|
|
|
ExprKind::InlineAsm(..) | ExprKind::Err => {},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Lit(ref l) => {
|
2019-10-22 09:17:16 +00:00
|
|
|
l.node.hash(&mut self.s);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Loop(ref b, ref i, _) => {
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_block(b);
|
|
|
|
if let Some(i) = *i {
|
2018-06-28 13:46:58 +00:00
|
|
|
self.hash_name(i.ident.name);
|
2016-02-09 14:18:27 +00:00
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Match(ref e, ref arms, ref s) => {
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_expr(e);
|
|
|
|
|
|
|
|
for arm in arms {
|
|
|
|
// TODO: arm.pat?
|
|
|
|
if let Some(ref e) = arm.guard {
|
2018-09-02 07:38:25 +00:00
|
|
|
self.hash_guard(e);
|
2016-02-09 14:18:27 +00:00
|
|
|
}
|
|
|
|
self.hash_expr(&arm.body);
|
|
|
|
}
|
2016-12-02 19:54:05 +00:00
|
|
|
|
|
|
|
s.hash(&mut self.s);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::MethodCall(ref path, ref _tys, ref args) => {
|
2018-06-28 13:46:58 +00:00
|
|
|
self.hash_name(path.ident.name);
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_exprs(args);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Repeat(ref e, ref l_id) => {
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_expr(e);
|
2019-11-05 01:03:03 +00:00
|
|
|
self.hash_body(l_id.body);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Ret(ref e) => {
|
2016-02-09 14:18:27 +00:00
|
|
|
if let Some(ref e) = *e {
|
|
|
|
self.hash_expr(e);
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Path(ref qpath) => {
|
2016-12-02 21:23:24 +00:00
|
|
|
self.hash_qpath(qpath);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Struct(ref path, ref fields, ref expr) => {
|
2016-12-02 21:23:24 +00:00
|
|
|
self.hash_qpath(path);
|
2016-02-09 14:18:27 +00:00
|
|
|
|
|
|
|
for f in fields {
|
2018-05-31 18:15:48 +00:00
|
|
|
self.hash_name(f.ident.name);
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_expr(&f.expr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(ref e) = *expr {
|
|
|
|
self.hash_expr(e);
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2019-02-15 20:21:13 +00:00
|
|
|
ExprKind::Tup(ref tup) => {
|
|
|
|
self.hash_exprs(tup);
|
|
|
|
},
|
|
|
|
ExprKind::Array(ref v) => {
|
2019-05-14 13:08:29 +00:00
|
|
|
self.hash_exprs(v);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Unary(lop, ref le) => {
|
2019-10-22 09:18:18 +00:00
|
|
|
lop.hash_stable(&mut self.cx.tcx.get_stable_hashing_context(), &mut self.s);
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_expr(le);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-02-09 14:18:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-23 21:44:00 +00:00
|
|
|
pub fn hash_exprs(&mut self, e: &P<[Expr]>) {
|
2016-02-09 14:18:27 +00:00
|
|
|
for e in e {
|
|
|
|
self.hash_expr(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-31 18:15:48 +00:00
|
|
|
pub fn hash_name(&mut self, n: Name) {
|
2016-02-09 14:18:27 +00:00
|
|
|
n.as_str().hash(&mut self.s);
|
|
|
|
}
|
|
|
|
|
2016-12-02 21:23:24 +00:00
|
|
|
pub fn hash_qpath(&mut self, p: &QPath) {
|
|
|
|
match *p {
|
|
|
|
QPath::Resolved(_, ref path) => {
|
|
|
|
self.hash_path(path);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-12-02 21:23:24 +00:00
|
|
|
QPath::TypeRelative(_, ref path) => {
|
2018-06-28 13:46:58 +00:00
|
|
|
self.hash_name(path.ident.name);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-12-02 21:23:24 +00:00
|
|
|
}
|
2019-05-04 00:03:12 +00:00
|
|
|
// self.cx.tables.qpath_res(p, id).hash(&mut self.s);
|
2016-12-01 21:31:56 +00:00
|
|
|
}
|
|
|
|
|
2016-02-09 14:18:27 +00:00
|
|
|
pub fn hash_path(&mut self, p: &Path) {
|
2017-01-04 04:40:42 +00:00
|
|
|
p.is_global().hash(&mut self.s);
|
2016-02-09 14:18:27 +00:00
|
|
|
for p in &p.segments {
|
2018-06-28 13:46:58 +00:00
|
|
|
self.hash_name(p.ident.name);
|
2016-02-09 14:18:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn hash_stmt(&mut self, b: &Stmt) {
|
2019-09-27 15:16:06 +00:00
|
|
|
std::mem::discriminant(&b.kind).hash(&mut self.s);
|
2019-05-14 12:13:23 +00:00
|
|
|
|
2019-09-27 15:16:06 +00:00
|
|
|
match &b.kind {
|
2019-05-14 13:08:29 +00:00
|
|
|
StmtKind::Local(local) => {
|
2019-01-20 10:21:30 +00:00
|
|
|
if let Some(ref init) = local.init {
|
|
|
|
self.hash_expr(init);
|
2016-10-02 00:17:04 +00:00
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2019-05-08 09:34:35 +00:00
|
|
|
StmtKind::Item(..) => {},
|
2019-05-14 13:08:29 +00:00
|
|
|
StmtKind::Expr(expr) | StmtKind::Semi(expr) => {
|
2016-02-09 14:18:27 +00:00
|
|
|
self.hash_expr(expr);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-02-09 14:18:27 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-02 07:38:25 +00:00
|
|
|
|
|
|
|
pub fn hash_guard(&mut self, g: &Guard) {
|
|
|
|
match g {
|
|
|
|
Guard::If(ref expr) => {
|
|
|
|
self.hash_expr(expr);
|
2018-11-27 20:14:15 +00:00
|
|
|
},
|
2018-09-02 07:38:25 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-15 20:21:13 +00:00
|
|
|
|
|
|
|
pub fn hash_lifetime(&mut self, lifetime: &Lifetime) {
|
2019-07-27 22:04:36 +00:00
|
|
|
std::mem::discriminant(&lifetime.name).hash(&mut self.s);
|
2019-02-15 20:21:13 +00:00
|
|
|
if let LifetimeName::Param(ref name) = lifetime.name {
|
2019-07-28 08:31:05 +00:00
|
|
|
std::mem::discriminant(name).hash(&mut self.s);
|
2019-02-15 20:21:13 +00:00
|
|
|
match name {
|
|
|
|
ParamName::Plain(ref ident) => {
|
|
|
|
ident.name.hash(&mut self.s);
|
|
|
|
},
|
|
|
|
ParamName::Fresh(ref size) => {
|
|
|
|
size.hash(&mut self.s);
|
|
|
|
},
|
2019-07-27 21:59:46 +00:00
|
|
|
ParamName::Error => {},
|
2019-02-15 20:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-24 21:59:32 +00:00
|
|
|
pub fn hash_ty(&mut self, ty: &Ty) {
|
2019-09-27 15:16:06 +00:00
|
|
|
self.hash_tykind(&ty.kind);
|
2019-07-24 21:59:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn hash_tykind(&mut self, ty: &TyKind) {
|
2019-07-28 08:31:05 +00:00
|
|
|
std::mem::discriminant(ty).hash(&mut self.s);
|
2019-07-24 21:27:12 +00:00
|
|
|
match ty {
|
|
|
|
TyKind::Slice(ty) => {
|
2019-02-15 20:21:13 +00:00
|
|
|
self.hash_ty(ty);
|
|
|
|
},
|
2019-07-24 21:27:12 +00:00
|
|
|
TyKind::Array(ty, anon_const) => {
|
2019-02-15 20:21:13 +00:00
|
|
|
self.hash_ty(ty);
|
2019-11-05 01:03:03 +00:00
|
|
|
self.hash_body(anon_const.body);
|
2019-02-15 20:21:13 +00:00
|
|
|
},
|
2019-07-24 21:27:12 +00:00
|
|
|
TyKind::Ptr(mut_ty) => {
|
2019-02-15 20:21:13 +00:00
|
|
|
self.hash_ty(&mut_ty.ty);
|
|
|
|
mut_ty.mutbl.hash(&mut self.s);
|
|
|
|
},
|
2019-07-24 21:27:12 +00:00
|
|
|
TyKind::Rptr(lifetime, mut_ty) => {
|
2019-02-15 20:21:13 +00:00
|
|
|
self.hash_lifetime(lifetime);
|
|
|
|
self.hash_ty(&mut_ty.ty);
|
|
|
|
mut_ty.mutbl.hash(&mut self.s);
|
|
|
|
},
|
2019-07-24 21:27:12 +00:00
|
|
|
TyKind::BareFn(bfn) => {
|
2019-02-15 20:21:13 +00:00
|
|
|
bfn.unsafety.hash(&mut self.s);
|
|
|
|
bfn.abi.hash(&mut self.s);
|
|
|
|
for arg in &bfn.decl.inputs {
|
|
|
|
self.hash_ty(&arg);
|
|
|
|
}
|
|
|
|
match bfn.decl.output {
|
|
|
|
FunctionRetTy::DefaultReturn(_) => {
|
|
|
|
().hash(&mut self.s);
|
|
|
|
},
|
|
|
|
FunctionRetTy::Return(ref ty) => {
|
|
|
|
self.hash_ty(ty);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
bfn.decl.c_variadic.hash(&mut self.s);
|
|
|
|
},
|
2019-07-24 21:27:12 +00:00
|
|
|
TyKind::Tup(ty_list) => {
|
2019-02-15 20:21:13 +00:00
|
|
|
for ty in ty_list {
|
|
|
|
self.hash_ty(ty);
|
|
|
|
}
|
|
|
|
},
|
2019-07-27 20:58:29 +00:00
|
|
|
TyKind::Path(qpath) => match qpath {
|
|
|
|
QPath::Resolved(ref maybe_ty, ref path) => {
|
|
|
|
if let Some(ref ty) = maybe_ty {
|
2019-02-15 20:21:13 +00:00
|
|
|
self.hash_ty(ty);
|
2019-07-27 20:58:29 +00:00
|
|
|
}
|
|
|
|
for segment in &path.segments {
|
2019-02-15 20:21:13 +00:00
|
|
|
segment.ident.name.hash(&mut self.s);
|
2019-07-27 20:58:29 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
QPath::TypeRelative(ref ty, ref segment) => {
|
|
|
|
self.hash_ty(ty);
|
|
|
|
segment.ident.name.hash(&mut self.s);
|
|
|
|
},
|
2019-02-15 20:21:13 +00:00
|
|
|
},
|
2019-07-24 21:27:12 +00:00
|
|
|
TyKind::Def(_, arg_list) => {
|
2019-02-15 20:21:13 +00:00
|
|
|
for arg in arg_list {
|
|
|
|
match arg {
|
|
|
|
GenericArg::Lifetime(ref l) => self.hash_lifetime(l),
|
2019-07-24 21:59:32 +00:00
|
|
|
GenericArg::Type(ref ty) => self.hash_ty(&ty),
|
2019-11-05 01:03:03 +00:00
|
|
|
GenericArg::Const(ref ca) => self.hash_body(ca.value.body),
|
2019-02-15 20:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2019-07-24 21:27:12 +00:00
|
|
|
TyKind::TraitObject(_, lifetime) => {
|
2019-02-15 20:21:13 +00:00
|
|
|
self.hash_lifetime(lifetime);
|
|
|
|
},
|
2019-07-24 21:27:12 +00:00
|
|
|
TyKind::Typeof(anon_const) => {
|
2019-11-05 01:03:03 +00:00
|
|
|
self.hash_body(anon_const.body);
|
2019-02-15 20:21:13 +00:00
|
|
|
},
|
2019-07-24 21:27:12 +00:00
|
|
|
TyKind::Err | TyKind::Infer | TyKind::Never => {},
|
2019-02-15 20:21:13 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-05 01:03:03 +00:00
|
|
|
|
|
|
|
pub fn hash_body(&mut self, body_id: BodyId) {
|
|
|
|
// swap out TypeckTables when hashing a body
|
|
|
|
let old_tables = self.tables;
|
|
|
|
self.tables = self.cx.tcx.body_tables(body_id);
|
|
|
|
self.hash_expr(&self.cx.tcx.hir().body(body_id).value);
|
|
|
|
self.tables = old_tables;
|
|
|
|
}
|
2016-02-09 14:18:27 +00:00
|
|
|
}
|