]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_utils/src/ast_utils.rs
9aa379352089374da82171cb092080573e1fef42
[rust.git] / src / tools / clippy / clippy_utils / src / ast_utils.rs
1 //! Utilities for manipulating and extracting information from `rustc_ast::ast`.
2 //!
3 //! - The `eq_foobar` functions test for semantic equality but ignores `NodeId`s and `Span`s.
4
5 #![allow(clippy::similar_names, clippy::wildcard_imports, clippy::enum_glob_use)]
6
7 use crate::{both, over};
8 use rustc_ast::ptr::P;
9 use rustc_ast::{self as ast, *};
10 use rustc_span::symbol::Ident;
11 use std::mem;
12
13 pub mod ident_iter;
14 pub use ident_iter::IdentIter;
15
16 pub fn is_useless_with_eq_exprs(kind: BinOpKind) -> bool {
17     use BinOpKind::*;
18     matches!(
19         kind,
20         Sub | Div | Eq | Lt | Le | Gt | Ge | Ne | And | Or | BitXor | BitAnd | BitOr
21     )
22 }
23
24 /// Checks if each element in the first slice is contained within the latter as per `eq_fn`.
25 pub fn unordered_over<X>(left: &[X], right: &[X], mut eq_fn: impl FnMut(&X, &X) -> bool) -> bool {
26     left.len() == right.len() && left.iter().all(|l| right.iter().any(|r| eq_fn(l, r)))
27 }
28
29 pub fn eq_id(l: Ident, r: Ident) -> bool {
30     l.name == r.name
31 }
32
33 pub fn eq_pat(l: &Pat, r: &Pat) -> bool {
34     use PatKind::*;
35     match (&l.kind, &r.kind) {
36         (Paren(l), _) => eq_pat(l, r),
37         (_, Paren(r)) => eq_pat(l, r),
38         (Wild, Wild) | (Rest, Rest) => true,
39         (Lit(l), Lit(r)) => eq_expr(l, r),
40         (Ident(b1, i1, s1), Ident(b2, i2, s2)) => b1 == b2 && eq_id(*i1, *i2) && both(s1, s2, |l, r| eq_pat(l, r)),
41         (Range(lf, lt, le), Range(rf, rt, re)) => {
42             eq_expr_opt(lf, rf) && eq_expr_opt(lt, rt) && eq_range_end(&le.node, &re.node)
43         },
44         (Box(l), Box(r))
45         | (Ref(l, Mutability::Not), Ref(r, Mutability::Not))
46         | (Ref(l, Mutability::Mut), Ref(r, Mutability::Mut)) => eq_pat(l, r),
47         (Tuple(l), Tuple(r)) | (Slice(l), Slice(r)) => over(l, r, |l, r| eq_pat(l, r)),
48         (Path(lq, lp), Path(rq, rp)) => both(lq, rq, eq_qself) && eq_path(lp, rp),
49         (TupleStruct(lqself, lp, lfs), TupleStruct(rqself, rp, rfs)) => {
50             eq_maybe_qself(lqself, rqself) && eq_path(lp, rp) && over(lfs, rfs, |l, r| eq_pat(l, r))
51         },
52         (Struct(lqself, lp, lfs, lr), Struct(rqself, rp, rfs, rr)) => {
53             lr == rr && eq_maybe_qself(lqself, rqself) && eq_path(lp, rp) && unordered_over(lfs, rfs, eq_field_pat)
54         },
55         (Or(ls), Or(rs)) => unordered_over(ls, rs, |l, r| eq_pat(l, r)),
56         (MacCall(l), MacCall(r)) => eq_mac_call(l, r),
57         _ => false,
58     }
59 }
60
61 pub fn eq_range_end(l: &RangeEnd, r: &RangeEnd) -> bool {
62     match (l, r) {
63         (RangeEnd::Excluded, RangeEnd::Excluded) => true,
64         (RangeEnd::Included(l), RangeEnd::Included(r)) => {
65             matches!(l, RangeSyntax::DotDotEq) == matches!(r, RangeSyntax::DotDotEq)
66         },
67         _ => false,
68     }
69 }
70
71 pub fn eq_field_pat(l: &PatField, r: &PatField) -> bool {
72     l.is_placeholder == r.is_placeholder
73         && eq_id(l.ident, r.ident)
74         && eq_pat(&l.pat, &r.pat)
75         && over(&l.attrs, &r.attrs, eq_attr)
76 }
77
78 pub fn eq_qself(l: &QSelf, r: &QSelf) -> bool {
79     l.position == r.position && eq_ty(&l.ty, &r.ty)
80 }
81
82 pub fn eq_maybe_qself(l: &Option<QSelf>, r: &Option<QSelf>) -> bool {
83     match (l, r) {
84         (Some(l), Some(r)) => eq_qself(l, r),
85         (None, None) => true,
86         _ => false,
87     }
88 }
89
90 pub fn eq_path(l: &Path, r: &Path) -> bool {
91     over(&l.segments, &r.segments, eq_path_seg)
92 }
93
94 pub fn eq_path_seg(l: &PathSegment, r: &PathSegment) -> bool {
95     eq_id(l.ident, r.ident) && both(&l.args, &r.args, |l, r| eq_generic_args(l, r))
96 }
97
98 pub fn eq_generic_args(l: &GenericArgs, r: &GenericArgs) -> bool {
99     match (l, r) {
100         (GenericArgs::AngleBracketed(l), GenericArgs::AngleBracketed(r)) => over(&l.args, &r.args, eq_angle_arg),
101         (GenericArgs::Parenthesized(l), GenericArgs::Parenthesized(r)) => {
102             over(&l.inputs, &r.inputs, |l, r| eq_ty(l, r)) && eq_fn_ret_ty(&l.output, &r.output)
103         },
104         _ => false,
105     }
106 }
107
108 pub fn eq_angle_arg(l: &AngleBracketedArg, r: &AngleBracketedArg) -> bool {
109     match (l, r) {
110         (AngleBracketedArg::Arg(l), AngleBracketedArg::Arg(r)) => eq_generic_arg(l, r),
111         (AngleBracketedArg::Constraint(l), AngleBracketedArg::Constraint(r)) => eq_assoc_constraint(l, r),
112         _ => false,
113     }
114 }
115
116 pub fn eq_generic_arg(l: &GenericArg, r: &GenericArg) -> bool {
117     match (l, r) {
118         (GenericArg::Lifetime(l), GenericArg::Lifetime(r)) => eq_id(l.ident, r.ident),
119         (GenericArg::Type(l), GenericArg::Type(r)) => eq_ty(l, r),
120         (GenericArg::Const(l), GenericArg::Const(r)) => eq_expr(&l.value, &r.value),
121         _ => false,
122     }
123 }
124
125 pub fn eq_expr_opt(l: &Option<P<Expr>>, r: &Option<P<Expr>>) -> bool {
126     both(l, r, |l, r| eq_expr(l, r))
127 }
128
129 pub fn eq_struct_rest(l: &StructRest, r: &StructRest) -> bool {
130     match (l, r) {
131         (StructRest::Base(lb), StructRest::Base(rb)) => eq_expr(lb, rb),
132         (StructRest::Rest(_), StructRest::Rest(_)) | (StructRest::None, StructRest::None) => true,
133         _ => false,
134     }
135 }
136
137 pub fn eq_expr(l: &Expr, r: &Expr) -> bool {
138     use ExprKind::*;
139     if !over(&l.attrs, &r.attrs, eq_attr) {
140         return false;
141     }
142     match (&l.kind, &r.kind) {
143         (Paren(l), _) => eq_expr(l, r),
144         (_, Paren(r)) => eq_expr(l, r),
145         (Err, Err) => true,
146         (Box(l), Box(r)) | (Try(l), Try(r)) | (Await(l), Await(r)) => eq_expr(l, r),
147         (Array(l), Array(r)) | (Tup(l), Tup(r)) => over(l, r, |l, r| eq_expr(l, r)),
148         (Repeat(le, ls), Repeat(re, rs)) => eq_expr(le, re) && eq_expr(&ls.value, &rs.value),
149         (Call(lc, la), Call(rc, ra)) => eq_expr(lc, rc) && over(la, ra, |l, r| eq_expr(l, r)),
150         (MethodCall(lc, la, _), MethodCall(rc, ra, _)) => eq_path_seg(lc, rc) && over(la, ra, |l, r| eq_expr(l, r)),
151         (Binary(lo, ll, lr), Binary(ro, rl, rr)) => lo.node == ro.node && eq_expr(ll, rl) && eq_expr(lr, rr),
152         (Unary(lo, l), Unary(ro, r)) => mem::discriminant(lo) == mem::discriminant(ro) && eq_expr(l, r),
153         (Lit(l), Lit(r)) => l.kind == r.kind,
154         (Cast(l, lt), Cast(r, rt)) | (Type(l, lt), Type(r, rt)) => eq_expr(l, r) && eq_ty(lt, rt),
155         (Let(lp, le, _), Let(rp, re, _)) => eq_pat(lp, rp) && eq_expr(le, re),
156         (If(lc, lt, le), If(rc, rt, re)) => eq_expr(lc, rc) && eq_block(lt, rt) && eq_expr_opt(le, re),
157         (While(lc, lt, ll), While(rc, rt, rl)) => eq_label(ll, rl) && eq_expr(lc, rc) && eq_block(lt, rt),
158         (ForLoop(lp, li, lt, ll), ForLoop(rp, ri, rt, rl)) => {
159             eq_label(ll, rl) && eq_pat(lp, rp) && eq_expr(li, ri) && eq_block(lt, rt)
160         },
161         (Loop(lt, ll), Loop(rt, rl)) => eq_label(ll, rl) && eq_block(lt, rt),
162         (Block(lb, ll), Block(rb, rl)) => eq_label(ll, rl) && eq_block(lb, rb),
163         (TryBlock(l), TryBlock(r)) => eq_block(l, r),
164         (Yield(l), Yield(r)) | (Ret(l), Ret(r)) => eq_expr_opt(l, r),
165         (Break(ll, le), Break(rl, re)) => eq_label(ll, rl) && eq_expr_opt(le, re),
166         (Continue(ll), Continue(rl)) => eq_label(ll, rl),
167         (Assign(l1, l2, _), Assign(r1, r2, _)) | (Index(l1, l2), Index(r1, r2)) => eq_expr(l1, r1) && eq_expr(l2, r2),
168         (AssignOp(lo, lp, lv), AssignOp(ro, rp, rv)) => lo.node == ro.node && eq_expr(lp, rp) && eq_expr(lv, rv),
169         (Field(lp, lf), Field(rp, rf)) => eq_id(*lf, *rf) && eq_expr(lp, rp),
170         (Match(ls, la), Match(rs, ra)) => eq_expr(ls, rs) && over(la, ra, eq_arm),
171         (Closure(lc, la, lm, lf, lb, _), Closure(rc, ra, rm, rf, rb, _)) => {
172             lc == rc && la.is_async() == ra.is_async() && lm == rm && eq_fn_decl(lf, rf) && eq_expr(lb, rb)
173         },
174         (Async(lc, _, lb), Async(rc, _, rb)) => lc == rc && eq_block(lb, rb),
175         (Range(lf, lt, ll), Range(rf, rt, rl)) => ll == rl && eq_expr_opt(lf, rf) && eq_expr_opt(lt, rt),
176         (AddrOf(lbk, lm, le), AddrOf(rbk, rm, re)) => lbk == rbk && lm == rm && eq_expr(le, re),
177         (Path(lq, lp), Path(rq, rp)) => both(lq, rq, eq_qself) && eq_path(lp, rp),
178         (MacCall(l), MacCall(r)) => eq_mac_call(l, r),
179         (Struct(lse), Struct(rse)) => {
180             eq_maybe_qself(&lse.qself, &rse.qself)
181                 && eq_path(&lse.path, &rse.path)
182                 && eq_struct_rest(&lse.rest, &rse.rest)
183                 && unordered_over(&lse.fields, &rse.fields, eq_field)
184         },
185         _ => false,
186     }
187 }
188
189 pub fn eq_field(l: &ExprField, r: &ExprField) -> bool {
190     l.is_placeholder == r.is_placeholder
191         && eq_id(l.ident, r.ident)
192         && eq_expr(&l.expr, &r.expr)
193         && over(&l.attrs, &r.attrs, eq_attr)
194 }
195
196 pub fn eq_arm(l: &Arm, r: &Arm) -> bool {
197     l.is_placeholder == r.is_placeholder
198         && eq_pat(&l.pat, &r.pat)
199         && eq_expr(&l.body, &r.body)
200         && eq_expr_opt(&l.guard, &r.guard)
201         && over(&l.attrs, &r.attrs, eq_attr)
202 }
203
204 pub fn eq_label(l: &Option<Label>, r: &Option<Label>) -> bool {
205     both(l, r, |l, r| eq_id(l.ident, r.ident))
206 }
207
208 pub fn eq_block(l: &Block, r: &Block) -> bool {
209     l.rules == r.rules && over(&l.stmts, &r.stmts, eq_stmt)
210 }
211
212 pub fn eq_stmt(l: &Stmt, r: &Stmt) -> bool {
213     use StmtKind::*;
214     match (&l.kind, &r.kind) {
215         (Local(l), Local(r)) => {
216             eq_pat(&l.pat, &r.pat)
217                 && both(&l.ty, &r.ty, |l, r| eq_ty(l, r))
218                 && eq_local_kind(&l.kind, &r.kind)
219                 && over(&l.attrs, &r.attrs, eq_attr)
220         },
221         (Item(l), Item(r)) => eq_item(l, r, eq_item_kind),
222         (Expr(l), Expr(r)) | (Semi(l), Semi(r)) => eq_expr(l, r),
223         (Empty, Empty) => true,
224         (MacCall(l), MacCall(r)) => {
225             l.style == r.style && eq_mac_call(&l.mac, &r.mac) && over(&l.attrs, &r.attrs, eq_attr)
226         },
227         _ => false,
228     }
229 }
230
231 pub fn eq_local_kind(l: &LocalKind, r: &LocalKind) -> bool {
232     use LocalKind::*;
233     match (l, r) {
234         (Decl, Decl) => true,
235         (Init(l), Init(r)) => eq_expr(l, r),
236         (InitElse(li, le), InitElse(ri, re)) => eq_expr(li, ri) && eq_block(le, re),
237         _ => false,
238     }
239 }
240
241 pub fn eq_item<K>(l: &Item<K>, r: &Item<K>, mut eq_kind: impl FnMut(&K, &K) -> bool) -> bool {
242     eq_id(l.ident, r.ident) && over(&l.attrs, &r.attrs, eq_attr) && eq_vis(&l.vis, &r.vis) && eq_kind(&l.kind, &r.kind)
243 }
244
245 #[allow(clippy::too_many_lines)] // Just a big match statement
246 pub fn eq_item_kind(l: &ItemKind, r: &ItemKind) -> bool {
247     use ItemKind::*;
248     match (l, r) {
249         (ExternCrate(l), ExternCrate(r)) => l == r,
250         (Use(l), Use(r)) => eq_use_tree(l, r),
251         (Static(lt, lm, le), Static(rt, rm, re)) => lm == rm && eq_ty(lt, rt) && eq_expr_opt(le, re),
252         (Const(ld, lt, le), Const(rd, rt, re)) => eq_defaultness(*ld, *rd) && eq_ty(lt, rt) && eq_expr_opt(le, re),
253         (
254             Fn(box ast::Fn {
255                 defaultness: ld,
256                 sig: lf,
257                 generics: lg,
258                 body: lb,
259             }),
260             Fn(box ast::Fn {
261                 defaultness: rd,
262                 sig: rf,
263                 generics: rg,
264                 body: rb,
265             }),
266         ) => {
267             eq_defaultness(*ld, *rd) && eq_fn_sig(lf, rf) && eq_generics(lg, rg) && both(lb, rb, |l, r| eq_block(l, r))
268         },
269         (Mod(lu, lmk), Mod(ru, rmk)) => {
270             lu == ru
271                 && match (lmk, rmk) {
272                     (ModKind::Loaded(litems, linline, _), ModKind::Loaded(ritems, rinline, _)) => {
273                         linline == rinline && over(litems, ritems, |l, r| eq_item(l, r, eq_item_kind))
274                     },
275                     (ModKind::Unloaded, ModKind::Unloaded) => true,
276                     _ => false,
277                 }
278         },
279         (ForeignMod(l), ForeignMod(r)) => {
280             both(&l.abi, &r.abi, eq_str_lit) && over(&l.items, &r.items, |l, r| eq_item(l, r, eq_foreign_item_kind))
281         },
282         (
283             TyAlias(box ast::TyAlias {
284                 defaultness: ld,
285                 generics: lg,
286                 bounds: lb,
287                 ty: lt,
288                 ..
289             }),
290             TyAlias(box ast::TyAlias {
291                 defaultness: rd,
292                 generics: rg,
293                 bounds: rb,
294                 ty: rt,
295                 ..
296             }),
297         ) => {
298             eq_defaultness(*ld, *rd)
299                 && eq_generics(lg, rg)
300                 && over(lb, rb, eq_generic_bound)
301                 && both(lt, rt, |l, r| eq_ty(l, r))
302         },
303         (Enum(le, lg), Enum(re, rg)) => over(&le.variants, &re.variants, eq_variant) && eq_generics(lg, rg),
304         (Struct(lv, lg), Struct(rv, rg)) | (Union(lv, lg), Union(rv, rg)) => {
305             eq_variant_data(lv, rv) && eq_generics(lg, rg)
306         },
307         (
308             Trait(box ast::Trait {
309                 is_auto: la,
310                 unsafety: lu,
311                 generics: lg,
312                 bounds: lb,
313                 items: li,
314             }),
315             Trait(box ast::Trait {
316                 is_auto: ra,
317                 unsafety: ru,
318                 generics: rg,
319                 bounds: rb,
320                 items: ri,
321             }),
322         ) => {
323             la == ra
324                 && matches!(lu, Unsafe::No) == matches!(ru, Unsafe::No)
325                 && eq_generics(lg, rg)
326                 && over(lb, rb, eq_generic_bound)
327                 && over(li, ri, |l, r| eq_item(l, r, eq_assoc_item_kind))
328         },
329         (TraitAlias(lg, lb), TraitAlias(rg, rb)) => eq_generics(lg, rg) && over(lb, rb, eq_generic_bound),
330         (
331             Impl(box ast::Impl {
332                 unsafety: lu,
333                 polarity: lp,
334                 defaultness: ld,
335                 constness: lc,
336                 generics: lg,
337                 of_trait: lot,
338                 self_ty: lst,
339                 items: li,
340             }),
341             Impl(box ast::Impl {
342                 unsafety: ru,
343                 polarity: rp,
344                 defaultness: rd,
345                 constness: rc,
346                 generics: rg,
347                 of_trait: rot,
348                 self_ty: rst,
349                 items: ri,
350             }),
351         ) => {
352             matches!(lu, Unsafe::No) == matches!(ru, Unsafe::No)
353                 && matches!(lp, ImplPolarity::Positive) == matches!(rp, ImplPolarity::Positive)
354                 && eq_defaultness(*ld, *rd)
355                 && matches!(lc, ast::Const::No) == matches!(rc, ast::Const::No)
356                 && eq_generics(lg, rg)
357                 && both(lot, rot, |l, r| eq_path(&l.path, &r.path))
358                 && eq_ty(lst, rst)
359                 && over(li, ri, |l, r| eq_item(l, r, eq_assoc_item_kind))
360         },
361         (MacCall(l), MacCall(r)) => eq_mac_call(l, r),
362         (MacroDef(l), MacroDef(r)) => l.macro_rules == r.macro_rules && eq_mac_args(&l.body, &r.body),
363         _ => false,
364     }
365 }
366
367 pub fn eq_foreign_item_kind(l: &ForeignItemKind, r: &ForeignItemKind) -> bool {
368     use ForeignItemKind::*;
369     match (l, r) {
370         (Static(lt, lm, le), Static(rt, rm, re)) => lm == rm && eq_ty(lt, rt) && eq_expr_opt(le, re),
371         (
372             Fn(box ast::Fn {
373                 defaultness: ld,
374                 sig: lf,
375                 generics: lg,
376                 body: lb,
377             }),
378             Fn(box ast::Fn {
379                 defaultness: rd,
380                 sig: rf,
381                 generics: rg,
382                 body: rb,
383             }),
384         ) => {
385             eq_defaultness(*ld, *rd) && eq_fn_sig(lf, rf) && eq_generics(lg, rg) && both(lb, rb, |l, r| eq_block(l, r))
386         },
387         (
388             TyAlias(box ast::TyAlias {
389                 defaultness: ld,
390                 generics: lg,
391                 bounds: lb,
392                 ty: lt,
393                 ..
394             }),
395             TyAlias(box ast::TyAlias {
396                 defaultness: rd,
397                 generics: rg,
398                 bounds: rb,
399                 ty: rt,
400                 ..
401             }),
402         ) => {
403             eq_defaultness(*ld, *rd)
404                 && eq_generics(lg, rg)
405                 && over(lb, rb, eq_generic_bound)
406                 && both(lt, rt, |l, r| eq_ty(l, r))
407         },
408         (MacCall(l), MacCall(r)) => eq_mac_call(l, r),
409         _ => false,
410     }
411 }
412
413 pub fn eq_assoc_item_kind(l: &AssocItemKind, r: &AssocItemKind) -> bool {
414     use AssocItemKind::*;
415     match (l, r) {
416         (Const(ld, lt, le), Const(rd, rt, re)) => eq_defaultness(*ld, *rd) && eq_ty(lt, rt) && eq_expr_opt(le, re),
417         (
418             Fn(box ast::Fn {
419                 defaultness: ld,
420                 sig: lf,
421                 generics: lg,
422                 body: lb,
423             }),
424             Fn(box ast::Fn {
425                 defaultness: rd,
426                 sig: rf,
427                 generics: rg,
428                 body: rb,
429             }),
430         ) => {
431             eq_defaultness(*ld, *rd) && eq_fn_sig(lf, rf) && eq_generics(lg, rg) && both(lb, rb, |l, r| eq_block(l, r))
432         },
433         (
434             TyAlias(box ast::TyAlias {
435                 defaultness: ld,
436                 generics: lg,
437                 bounds: lb,
438                 ty: lt,
439                 ..
440             }),
441             TyAlias(box ast::TyAlias {
442                 defaultness: rd,
443                 generics: rg,
444                 bounds: rb,
445                 ty: rt,
446                 ..
447             }),
448         ) => {
449             eq_defaultness(*ld, *rd)
450                 && eq_generics(lg, rg)
451                 && over(lb, rb, eq_generic_bound)
452                 && both(lt, rt, |l, r| eq_ty(l, r))
453         },
454         (MacCall(l), MacCall(r)) => eq_mac_call(l, r),
455         _ => false,
456     }
457 }
458
459 pub fn eq_variant(l: &Variant, r: &Variant) -> bool {
460     l.is_placeholder == r.is_placeholder
461         && over(&l.attrs, &r.attrs, eq_attr)
462         && eq_vis(&l.vis, &r.vis)
463         && eq_id(l.ident, r.ident)
464         && eq_variant_data(&l.data, &r.data)
465         && both(&l.disr_expr, &r.disr_expr, |l, r| eq_expr(&l.value, &r.value))
466 }
467
468 pub fn eq_variant_data(l: &VariantData, r: &VariantData) -> bool {
469     use VariantData::*;
470     match (l, r) {
471         (Unit(_), Unit(_)) => true,
472         (Struct(l, _), Struct(r, _)) | (Tuple(l, _), Tuple(r, _)) => over(l, r, eq_struct_field),
473         _ => false,
474     }
475 }
476
477 pub fn eq_struct_field(l: &FieldDef, r: &FieldDef) -> bool {
478     l.is_placeholder == r.is_placeholder
479         && over(&l.attrs, &r.attrs, eq_attr)
480         && eq_vis(&l.vis, &r.vis)
481         && both(&l.ident, &r.ident, |l, r| eq_id(*l, *r))
482         && eq_ty(&l.ty, &r.ty)
483 }
484
485 pub fn eq_fn_sig(l: &FnSig, r: &FnSig) -> bool {
486     eq_fn_decl(&l.decl, &r.decl) && eq_fn_header(&l.header, &r.header)
487 }
488
489 pub fn eq_fn_header(l: &FnHeader, r: &FnHeader) -> bool {
490     matches!(l.unsafety, Unsafe::No) == matches!(r.unsafety, Unsafe::No)
491         && l.asyncness.is_async() == r.asyncness.is_async()
492         && matches!(l.constness, Const::No) == matches!(r.constness, Const::No)
493         && eq_ext(&l.ext, &r.ext)
494 }
495
496 pub fn eq_generics(l: &Generics, r: &Generics) -> bool {
497     over(&l.params, &r.params, eq_generic_param)
498         && over(&l.where_clause.predicates, &r.where_clause.predicates, |l, r| {
499             eq_where_predicate(l, r)
500         })
501 }
502
503 pub fn eq_where_predicate(l: &WherePredicate, r: &WherePredicate) -> bool {
504     use WherePredicate::*;
505     match (l, r) {
506         (BoundPredicate(l), BoundPredicate(r)) => {
507             over(&l.bound_generic_params, &r.bound_generic_params, |l, r| {
508                 eq_generic_param(l, r)
509             }) && eq_ty(&l.bounded_ty, &r.bounded_ty)
510                 && over(&l.bounds, &r.bounds, eq_generic_bound)
511         },
512         (RegionPredicate(l), RegionPredicate(r)) => {
513             eq_id(l.lifetime.ident, r.lifetime.ident) && over(&l.bounds, &r.bounds, eq_generic_bound)
514         },
515         (EqPredicate(l), EqPredicate(r)) => eq_ty(&l.lhs_ty, &r.lhs_ty) && eq_ty(&l.rhs_ty, &r.rhs_ty),
516         _ => false,
517     }
518 }
519
520 pub fn eq_use_tree(l: &UseTree, r: &UseTree) -> bool {
521     eq_path(&l.prefix, &r.prefix) && eq_use_tree_kind(&l.kind, &r.kind)
522 }
523
524 pub fn eq_anon_const(l: &AnonConst, r: &AnonConst) -> bool {
525     eq_expr(&l.value, &r.value)
526 }
527
528 pub fn eq_use_tree_kind(l: &UseTreeKind, r: &UseTreeKind) -> bool {
529     use UseTreeKind::*;
530     match (l, r) {
531         (Glob, Glob) => true,
532         (Simple(l, _, _), Simple(r, _, _)) => both(l, r, |l, r| eq_id(*l, *r)),
533         (Nested(l), Nested(r)) => over(l, r, |(l, _), (r, _)| eq_use_tree(l, r)),
534         _ => false,
535     }
536 }
537
538 pub fn eq_defaultness(l: Defaultness, r: Defaultness) -> bool {
539     matches!(
540         (l, r),
541         (Defaultness::Final, Defaultness::Final) | (Defaultness::Default(_), Defaultness::Default(_))
542     )
543 }
544
545 pub fn eq_vis(l: &Visibility, r: &Visibility) -> bool {
546     use VisibilityKind::*;
547     match (&l.kind, &r.kind) {
548         (Public, Public) | (Inherited, Inherited) | (Crate, Crate) => true,
549         (Restricted { path: l, .. }, Restricted { path: r, .. }) => eq_path(l, r),
550         _ => false,
551     }
552 }
553
554 pub fn eq_fn_decl(l: &FnDecl, r: &FnDecl) -> bool {
555     eq_fn_ret_ty(&l.output, &r.output)
556         && over(&l.inputs, &r.inputs, |l, r| {
557             l.is_placeholder == r.is_placeholder
558                 && eq_pat(&l.pat, &r.pat)
559                 && eq_ty(&l.ty, &r.ty)
560                 && over(&l.attrs, &r.attrs, eq_attr)
561         })
562 }
563
564 pub fn eq_fn_ret_ty(l: &FnRetTy, r: &FnRetTy) -> bool {
565     match (l, r) {
566         (FnRetTy::Default(_), FnRetTy::Default(_)) => true,
567         (FnRetTy::Ty(l), FnRetTy::Ty(r)) => eq_ty(l, r),
568         _ => false,
569     }
570 }
571
572 pub fn eq_ty(l: &Ty, r: &Ty) -> bool {
573     use TyKind::*;
574     match (&l.kind, &r.kind) {
575         (Paren(l), _) => eq_ty(l, r),
576         (_, Paren(r)) => eq_ty(l, r),
577         (Never, Never) | (Infer, Infer) | (ImplicitSelf, ImplicitSelf) | (Err, Err) | (CVarArgs, CVarArgs) => true,
578         (Slice(l), Slice(r)) => eq_ty(l, r),
579         (Array(le, ls), Array(re, rs)) => eq_ty(le, re) && eq_expr(&ls.value, &rs.value),
580         (Ptr(l), Ptr(r)) => l.mutbl == r.mutbl && eq_ty(&l.ty, &r.ty),
581         (Rptr(ll, l), Rptr(rl, r)) => {
582             both(ll, rl, |l, r| eq_id(l.ident, r.ident)) && l.mutbl == r.mutbl && eq_ty(&l.ty, &r.ty)
583         },
584         (BareFn(l), BareFn(r)) => {
585             l.unsafety == r.unsafety
586                 && eq_ext(&l.ext, &r.ext)
587                 && over(&l.generic_params, &r.generic_params, eq_generic_param)
588                 && eq_fn_decl(&l.decl, &r.decl)
589         },
590         (Tup(l), Tup(r)) => over(l, r, |l, r| eq_ty(l, r)),
591         (Path(lq, lp), Path(rq, rp)) => both(lq, rq, eq_qself) && eq_path(lp, rp),
592         (TraitObject(lg, ls), TraitObject(rg, rs)) => ls == rs && over(lg, rg, eq_generic_bound),
593         (ImplTrait(_, lg), ImplTrait(_, rg)) => over(lg, rg, eq_generic_bound),
594         (Typeof(l), Typeof(r)) => eq_expr(&l.value, &r.value),
595         (MacCall(l), MacCall(r)) => eq_mac_call(l, r),
596         _ => false,
597     }
598 }
599
600 pub fn eq_ext(l: &Extern, r: &Extern) -> bool {
601     use Extern::*;
602     match (l, r) {
603         (None, None) | (Implicit, Implicit) => true,
604         (Explicit(l), Explicit(r)) => eq_str_lit(l, r),
605         _ => false,
606     }
607 }
608
609 pub fn eq_str_lit(l: &StrLit, r: &StrLit) -> bool {
610     l.style == r.style && l.symbol == r.symbol && l.suffix == r.suffix
611 }
612
613 pub fn eq_poly_ref_trait(l: &PolyTraitRef, r: &PolyTraitRef) -> bool {
614     eq_path(&l.trait_ref.path, &r.trait_ref.path)
615         && over(&l.bound_generic_params, &r.bound_generic_params, |l, r| {
616             eq_generic_param(l, r)
617         })
618 }
619
620 pub fn eq_generic_param(l: &GenericParam, r: &GenericParam) -> bool {
621     use GenericParamKind::*;
622     l.is_placeholder == r.is_placeholder
623         && eq_id(l.ident, r.ident)
624         && over(&l.bounds, &r.bounds, eq_generic_bound)
625         && match (&l.kind, &r.kind) {
626             (Lifetime, Lifetime) => true,
627             (Type { default: l }, Type { default: r }) => both(l, r, |l, r| eq_ty(l, r)),
628             (
629                 Const {
630                     ty: lt,
631                     kw_span: _,
632                     default: ld,
633                 },
634                 Const {
635                     ty: rt,
636                     kw_span: _,
637                     default: rd,
638                 },
639             ) => eq_ty(lt, rt) && both(ld, rd, eq_anon_const),
640             _ => false,
641         }
642         && over(&l.attrs, &r.attrs, eq_attr)
643 }
644
645 pub fn eq_generic_bound(l: &GenericBound, r: &GenericBound) -> bool {
646     use GenericBound::*;
647     match (l, r) {
648         (Trait(ptr1, tbm1), Trait(ptr2, tbm2)) => tbm1 == tbm2 && eq_poly_ref_trait(ptr1, ptr2),
649         (Outlives(l), Outlives(r)) => eq_id(l.ident, r.ident),
650         _ => false,
651     }
652 }
653
654 fn eq_term(l: &Term, r: &Term) -> bool {
655     match (l, r) {
656         (Term::Ty(l), Term::Ty(r)) => eq_ty(l, r),
657         (Term::Const(l), Term::Const(r)) => eq_anon_const(l, r),
658         _ => false,
659     }
660 }
661
662 pub fn eq_assoc_constraint(l: &AssocConstraint, r: &AssocConstraint) -> bool {
663     use AssocConstraintKind::*;
664     eq_id(l.ident, r.ident)
665         && match (&l.kind, &r.kind) {
666             (Equality { term: l }, Equality { term: r }) => eq_term(l, r),
667             (Bound { bounds: l }, Bound { bounds: r }) => over(l, r, eq_generic_bound),
668             _ => false,
669         }
670 }
671
672 pub fn eq_mac_call(l: &MacCall, r: &MacCall) -> bool {
673     eq_path(&l.path, &r.path) && eq_mac_args(&l.args, &r.args)
674 }
675
676 pub fn eq_attr(l: &Attribute, r: &Attribute) -> bool {
677     use AttrKind::*;
678     l.style == r.style
679         && match (&l.kind, &r.kind) {
680             (DocComment(l1, l2), DocComment(r1, r2)) => l1 == r1 && l2 == r2,
681             (Normal(l, _), Normal(r, _)) => eq_path(&l.path, &r.path) && eq_mac_args(&l.args, &r.args),
682             _ => false,
683         }
684 }
685
686 pub fn eq_mac_args(l: &MacArgs, r: &MacArgs) -> bool {
687     use MacArgs::*;
688     match (l, r) {
689         (Empty, Empty) => true,
690         (Delimited(_, ld, lts), Delimited(_, rd, rts)) => ld == rd && lts.eq_unspanned(rts),
691         (Eq(_, MacArgsEq::Ast(le)), Eq(_, MacArgsEq::Ast(re))) => eq_expr(le, re),
692         (Eq(_, MacArgsEq::Hir(ll)), Eq(_, MacArgsEq::Hir(rl))) => ll.kind == rl.kind,
693         _ => false,
694     }
695 }