]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_hir/src/intravisit.rs
Auto merge of #103846 - Kobzol:revert-103295-ninja, r=cuviper
[rust.git] / compiler / rustc_hir / src / intravisit.rs
1 //! HIR walker for walking the contents of nodes.
2 //!
3 //! Here are the three available patterns for the visitor strategy,
4 //! in roughly the order of desirability:
5 //!
6 //! 1. **Shallow visit**: Get a simple callback for every item (or item-like thing) in the HIR.
7 //!    - Example: find all items with a `#[foo]` attribute on them.
8 //!    - How: Use the `hir_crate_items` or `hir_module_items` query to traverse over item-like ids
9 //!       (ItemId, TraitItemId, etc.) and use tcx.def_kind and `tcx.hir().item*(id)` to filter and
10 //!       access actual item-like thing, respectively.
11 //!    - Pro: Efficient; just walks the lists of item ids and gives users control whether to access
12 //!       the hir_owners themselves or not.
13 //!    - Con: Don't get information about nesting
14 //!    - Con: Don't have methods for specific bits of HIR, like "on
15 //!      every expr, do this".
16 //! 2. **Deep visit**: Want to scan for specific kinds of HIR nodes within
17 //!    an item, but don't care about how item-like things are nested
18 //!    within one another.
19 //!    - Example: Examine each expression to look for its type and do some check or other.
20 //!    - How: Implement `intravisit::Visitor` and override the `NestedFilter` type to
21 //!      `nested_filter::OnlyBodies` (and implement `nested_visit_map`), and use
22 //!      `tcx.hir().visit_all_item_likes_in_crate(&mut visitor)`. Within your
23 //!      `intravisit::Visitor` impl, implement methods like `visit_expr()` (don't forget to invoke
24 //!      `intravisit::walk_expr()` to keep walking the subparts).
25 //!    - Pro: Visitor methods for any kind of HIR node, not just item-like things.
26 //!    - Pro: Integrates well into dependency tracking.
27 //!    - Con: Don't get information about nesting between items
28 //! 3. **Nested visit**: Want to visit the whole HIR and you care about the nesting between
29 //!    item-like things.
30 //!    - Example: Lifetime resolution, which wants to bring lifetimes declared on the
31 //!      impl into scope while visiting the impl-items, and then back out again.
32 //!    - How: Implement `intravisit::Visitor` and override the `NestedFilter` type to
33 //!      `nested_filter::All` (and implement `nested_visit_map`). Walk your crate with
34 //!      `tcx.hir().walk_toplevel_module(visitor)` invoked on `tcx.hir().krate()`.
35 //!    - Pro: Visitor methods for any kind of HIR node, not just item-like things.
36 //!    - Pro: Preserves nesting information
37 //!    - Con: Does not integrate well into dependency tracking.
38 //!
39 //! If you have decided to use this visitor, here are some general
40 //! notes on how to do so:
41 //!
42 //! Each overridden visit method has full control over what
43 //! happens with its node, it can do its own traversal of the node's children,
44 //! call `intravisit::walk_*` to apply the default traversal algorithm, or prevent
45 //! deeper traversal by doing nothing.
46 //!
47 //! When visiting the HIR, the contents of nested items are NOT visited
48 //! by default. This is different from the AST visitor, which does a deep walk.
49 //! Hence this module is called `intravisit`; see the method `visit_nested_item`
50 //! for more details.
51 //!
52 //! Note: it is an important invariant that the default visitor walks
53 //! the body of a function in "execution order" - more concretely, if
54 //! we consider the reverse post-order (RPO) of the CFG implied by the HIR,
55 //! then a pre-order traversal of the HIR is consistent with the CFG RPO
56 //! on the *initial CFG point* of each HIR node, while a post-order traversal
57 //! of the HIR is consistent with the CFG RPO on each *final CFG point* of
58 //! each CFG node.
59 //!
60 //! One thing that follows is that if HIR node A always starts/ends executing
61 //! before HIR node B, then A appears in traversal pre/postorder before B,
62 //! respectively. (This follows from RPO respecting CFG domination).
63 //!
64 //! This order consistency is required in a few places in rustc, for
65 //! example generator inference, and possibly also HIR borrowck.
66
67 use crate::hir::*;
68 use rustc_ast::walk_list;
69 use rustc_ast::{Attribute, Label};
70 use rustc_span::symbol::{Ident, Symbol};
71 use rustc_span::Span;
72
73 pub trait IntoVisitor<'hir> {
74     type Visitor: Visitor<'hir>;
75     fn into_visitor(&self) -> Self::Visitor;
76 }
77
78 #[derive(Copy, Clone, Debug)]
79 pub enum FnKind<'a> {
80     /// `#[xxx] pub async/const/extern "Abi" fn foo()`
81     ItemFn(Ident, &'a Generics<'a>, FnHeader),
82
83     /// `fn foo(&self)`
84     Method(Ident, &'a FnSig<'a>),
85
86     /// `|x, y| {}`
87     Closure,
88 }
89
90 impl<'a> FnKind<'a> {
91     pub fn header(&self) -> Option<&FnHeader> {
92         match *self {
93             FnKind::ItemFn(_, _, ref header) => Some(header),
94             FnKind::Method(_, ref sig) => Some(&sig.header),
95             FnKind::Closure => None,
96         }
97     }
98
99     pub fn constness(self) -> Constness {
100         self.header().map_or(Constness::NotConst, |header| header.constness)
101     }
102
103     pub fn asyncness(self) -> IsAsync {
104         self.header().map_or(IsAsync::NotAsync, |header| header.asyncness)
105     }
106 }
107
108 /// An abstract representation of the HIR `rustc_middle::hir::map::Map`.
109 pub trait Map<'hir> {
110     /// Retrieves the `Node` corresponding to `id`, returning `None` if cannot be found.
111     fn find(&self, hir_id: HirId) -> Option<Node<'hir>>;
112     fn body(&self, id: BodyId) -> &'hir Body<'hir>;
113     fn item(&self, id: ItemId) -> &'hir Item<'hir>;
114     fn trait_item(&self, id: TraitItemId) -> &'hir TraitItem<'hir>;
115     fn impl_item(&self, id: ImplItemId) -> &'hir ImplItem<'hir>;
116     fn foreign_item(&self, id: ForeignItemId) -> &'hir ForeignItem<'hir>;
117 }
118
119 // Used when no map is actually available, forcing manual implementation of nested visitors.
120 impl<'hir> Map<'hir> for ! {
121     fn find(&self, _: HirId) -> Option<Node<'hir>> {
122         *self;
123     }
124     fn body(&self, _: BodyId) -> &'hir Body<'hir> {
125         *self;
126     }
127     fn item(&self, _: ItemId) -> &'hir Item<'hir> {
128         *self;
129     }
130     fn trait_item(&self, _: TraitItemId) -> &'hir TraitItem<'hir> {
131         *self;
132     }
133     fn impl_item(&self, _: ImplItemId) -> &'hir ImplItem<'hir> {
134         *self;
135     }
136     fn foreign_item(&self, _: ForeignItemId) -> &'hir ForeignItem<'hir> {
137         *self;
138     }
139 }
140
141 pub mod nested_filter {
142     use super::Map;
143
144     /// Specifies what nested things a visitor wants to visit. By "nested
145     /// things", we are referring to bits of HIR that are not directly embedded
146     /// within one another but rather indirectly, through a table in the crate.
147     /// This is done to control dependencies during incremental compilation: the
148     /// non-inline bits of HIR can be tracked and hashed separately.
149     ///
150     /// The most common choice is `OnlyBodies`, which will cause the visitor to
151     /// visit fn bodies for fns that it encounters, and closure bodies, but
152     /// skip over nested item-like things.
153     ///
154     /// See the comments on `ItemLikeVisitor` for more details on the overall
155     /// visit strategy.
156     pub trait NestedFilter<'hir> {
157         type Map: Map<'hir>;
158
159         /// Whether the visitor visits nested "item-like" things.
160         /// E.g., item, impl-item.
161         const INTER: bool;
162         /// Whether the visitor visits "intra item-like" things.
163         /// E.g., function body, closure, `AnonConst`
164         const INTRA: bool;
165     }
166
167     /// Do not visit any nested things. When you add a new
168     /// "non-nested" thing, you will want to audit such uses to see if
169     /// they remain valid.
170     ///
171     /// Use this if you are only walking some particular kind of tree
172     /// (i.e., a type, or fn signature) and you don't want to thread a
173     /// HIR map around.
174     pub struct None(());
175     impl NestedFilter<'_> for None {
176         type Map = !;
177         const INTER: bool = false;
178         const INTRA: bool = false;
179     }
180 }
181
182 use nested_filter::NestedFilter;
183
184 /// Each method of the Visitor trait is a hook to be potentially
185 /// overridden. Each method's default implementation recursively visits
186 /// the substructure of the input via the corresponding `walk` method;
187 /// e.g., the `visit_mod` method by default calls `intravisit::walk_mod`.
188 ///
189 /// Note that this visitor does NOT visit nested items by default
190 /// (this is why the module is called `intravisit`, to distinguish it
191 /// from the AST's `visit` module, which acts differently). If you
192 /// simply want to visit all items in the crate in some order, you
193 /// should call `tcx.hir().visit_all_item_likes_in_crate`. Otherwise, see the comment
194 /// on `visit_nested_item` for details on how to visit nested items.
195 ///
196 /// If you want to ensure that your code handles every variant
197 /// explicitly, you need to override each method. (And you also need
198 /// to monitor future changes to `Visitor` in case a new method with a
199 /// new default implementation gets introduced.)
200 pub trait Visitor<'v>: Sized {
201     // this type should not be overridden, it exists for convenient usage as `Self::Map`
202     type Map: Map<'v> = <Self::NestedFilter as NestedFilter<'v>>::Map;
203
204     ///////////////////////////////////////////////////////////////////////////
205     // Nested items.
206
207     /// Override this type to control which nested HIR are visited; see
208     /// [`NestedFilter`] for details. If you override this type, you
209     /// must also override [`nested_visit_map`](Self::nested_visit_map).
210     ///
211     /// **If for some reason you want the nested behavior, but don't
212     /// have a `Map` at your disposal:** then override the
213     /// `visit_nested_XXX` methods. If a new `visit_nested_XXX` variant is
214     /// added in the future, it will cause a panic which can be detected
215     /// and fixed appropriately.
216     type NestedFilter: NestedFilter<'v> = nested_filter::None;
217
218     /// If `type NestedFilter` is set to visit nested items, this method
219     /// must also be overridden to provide a map to retrieve nested items.
220     fn nested_visit_map(&mut self) -> Self::Map {
221         panic!(
222             "nested_visit_map must be implemented or consider using \
223             `type NestedFilter = nested_filter::None` (the default)"
224         );
225     }
226
227     /// Invoked when a nested item is encountered. By default, when
228     /// `Self::NestedFilter` is `nested_filter::None`, this method does
229     /// nothing. **You probably don't want to override this method** --
230     /// instead, override [`Self::NestedFilter`] or use the "shallow" or
231     /// "deep" visit patterns described on
232     /// `itemlikevisit::ItemLikeVisitor`. The only reason to override
233     /// this method is if you want a nested pattern but cannot supply a
234     /// [`Map`]; see `nested_visit_map` for advice.
235     fn visit_nested_item(&mut self, id: ItemId) {
236         if Self::NestedFilter::INTER {
237             let item = self.nested_visit_map().item(id);
238             self.visit_item(item);
239         }
240     }
241
242     /// Like `visit_nested_item()`, but for trait items. See
243     /// `visit_nested_item()` for advice on when to override this
244     /// method.
245     fn visit_nested_trait_item(&mut self, id: TraitItemId) {
246         if Self::NestedFilter::INTER {
247             let item = self.nested_visit_map().trait_item(id);
248             self.visit_trait_item(item);
249         }
250     }
251
252     /// Like `visit_nested_item()`, but for impl items. See
253     /// `visit_nested_item()` for advice on when to override this
254     /// method.
255     fn visit_nested_impl_item(&mut self, id: ImplItemId) {
256         if Self::NestedFilter::INTER {
257             let item = self.nested_visit_map().impl_item(id);
258             self.visit_impl_item(item);
259         }
260     }
261
262     /// Like `visit_nested_item()`, but for foreign items. See
263     /// `visit_nested_item()` for advice on when to override this
264     /// method.
265     fn visit_nested_foreign_item(&mut self, id: ForeignItemId) {
266         if Self::NestedFilter::INTER {
267             let item = self.nested_visit_map().foreign_item(id);
268             self.visit_foreign_item(item);
269         }
270     }
271
272     /// Invoked to visit the body of a function, method or closure. Like
273     /// `visit_nested_item`, does nothing by default unless you override
274     /// `Self::NestedFilter`.
275     fn visit_nested_body(&mut self, id: BodyId) {
276         if Self::NestedFilter::INTRA {
277             let body = self.nested_visit_map().body(id);
278             self.visit_body(body);
279         }
280     }
281
282     fn visit_param(&mut self, param: &'v Param<'v>) {
283         walk_param(self, param)
284     }
285
286     /// Visits the top-level item and (optionally) nested items / impl items. See
287     /// `visit_nested_item` for details.
288     fn visit_item(&mut self, i: &'v Item<'v>) {
289         walk_item(self, i)
290     }
291
292     fn visit_body(&mut self, b: &'v Body<'v>) {
293         walk_body(self, b);
294     }
295
296     ///////////////////////////////////////////////////////////////////////////
297
298     fn visit_id(&mut self, _hir_id: HirId) {
299         // Nothing to do.
300     }
301     fn visit_name(&mut self, _name: Symbol) {
302         // Nothing to do.
303     }
304     fn visit_ident(&mut self, ident: Ident) {
305         walk_ident(self, ident)
306     }
307     fn visit_mod(&mut self, m: &'v Mod<'v>, _s: Span, n: HirId) {
308         walk_mod(self, m, n)
309     }
310     fn visit_foreign_item(&mut self, i: &'v ForeignItem<'v>) {
311         walk_foreign_item(self, i)
312     }
313     fn visit_local(&mut self, l: &'v Local<'v>) {
314         walk_local(self, l)
315     }
316     fn visit_block(&mut self, b: &'v Block<'v>) {
317         walk_block(self, b)
318     }
319     fn visit_stmt(&mut self, s: &'v Stmt<'v>) {
320         walk_stmt(self, s)
321     }
322     fn visit_arm(&mut self, a: &'v Arm<'v>) {
323         walk_arm(self, a)
324     }
325     fn visit_pat(&mut self, p: &'v Pat<'v>) {
326         walk_pat(self, p)
327     }
328     fn visit_pat_field(&mut self, f: &'v PatField<'v>) {
329         walk_pat_field(self, f)
330     }
331     fn visit_array_length(&mut self, len: &'v ArrayLen) {
332         walk_array_len(self, len)
333     }
334     fn visit_anon_const(&mut self, c: &'v AnonConst) {
335         walk_anon_const(self, c)
336     }
337     fn visit_expr(&mut self, ex: &'v Expr<'v>) {
338         walk_expr(self, ex)
339     }
340     fn visit_let_expr(&mut self, lex: &'v Let<'v>) {
341         walk_let_expr(self, lex)
342     }
343     fn visit_expr_field(&mut self, field: &'v ExprField<'v>) {
344         walk_expr_field(self, field)
345     }
346     fn visit_ty(&mut self, t: &'v Ty<'v>) {
347         walk_ty(self, t)
348     }
349     fn visit_generic_param(&mut self, p: &'v GenericParam<'v>) {
350         walk_generic_param(self, p)
351     }
352     fn visit_const_param_default(&mut self, _param: HirId, ct: &'v AnonConst) {
353         walk_const_param_default(self, ct)
354     }
355     fn visit_generics(&mut self, g: &'v Generics<'v>) {
356         walk_generics(self, g)
357     }
358     fn visit_where_predicate(&mut self, predicate: &'v WherePredicate<'v>) {
359         walk_where_predicate(self, predicate)
360     }
361     fn visit_fn_decl(&mut self, fd: &'v FnDecl<'v>) {
362         walk_fn_decl(self, fd)
363     }
364     fn visit_fn(&mut self, fk: FnKind<'v>, fd: &'v FnDecl<'v>, b: BodyId, _: Span, id: HirId) {
365         walk_fn(self, fk, fd, b, id)
366     }
367     fn visit_use(&mut self, path: &'v Path<'v>, hir_id: HirId) {
368         walk_use(self, path, hir_id)
369     }
370     fn visit_trait_item(&mut self, ti: &'v TraitItem<'v>) {
371         walk_trait_item(self, ti)
372     }
373     fn visit_trait_item_ref(&mut self, ii: &'v TraitItemRef) {
374         walk_trait_item_ref(self, ii)
375     }
376     fn visit_impl_item(&mut self, ii: &'v ImplItem<'v>) {
377         walk_impl_item(self, ii)
378     }
379     fn visit_foreign_item_ref(&mut self, ii: &'v ForeignItemRef) {
380         walk_foreign_item_ref(self, ii)
381     }
382     fn visit_impl_item_ref(&mut self, ii: &'v ImplItemRef) {
383         walk_impl_item_ref(self, ii)
384     }
385     fn visit_trait_ref(&mut self, t: &'v TraitRef<'v>) {
386         walk_trait_ref(self, t)
387     }
388     fn visit_param_bound(&mut self, bounds: &'v GenericBound<'v>) {
389         walk_param_bound(self, bounds)
390     }
391     fn visit_poly_trait_ref(&mut self, t: &'v PolyTraitRef<'v>) {
392         walk_poly_trait_ref(self, t)
393     }
394     fn visit_variant_data(&mut self, s: &'v VariantData<'v>) {
395         walk_struct_def(self, s)
396     }
397     fn visit_field_def(&mut self, s: &'v FieldDef<'v>) {
398         walk_field_def(self, s)
399     }
400     fn visit_enum_def(&mut self, enum_definition: &'v EnumDef<'v>, item_id: HirId) {
401         walk_enum_def(self, enum_definition, item_id)
402     }
403     fn visit_variant(&mut self, v: &'v Variant<'v>) {
404         walk_variant(self, v)
405     }
406     fn visit_label(&mut self, label: &'v Label) {
407         walk_label(self, label)
408     }
409     fn visit_infer(&mut self, inf: &'v InferArg) {
410         walk_inf(self, inf);
411     }
412     fn visit_generic_arg(&mut self, generic_arg: &'v GenericArg<'v>) {
413         walk_generic_arg(self, generic_arg);
414     }
415     fn visit_lifetime(&mut self, lifetime: &'v Lifetime) {
416         walk_lifetime(self, lifetime)
417     }
418     // The span is that of the surrounding type/pattern/expr/whatever.
419     fn visit_qpath(&mut self, qpath: &'v QPath<'v>, id: HirId, _span: Span) {
420         walk_qpath(self, qpath, id)
421     }
422     fn visit_path(&mut self, path: &'v Path<'v>, _id: HirId) {
423         walk_path(self, path)
424     }
425     fn visit_path_segment(&mut self, path_segment: &'v PathSegment<'v>) {
426         walk_path_segment(self, path_segment)
427     }
428     fn visit_generic_args(&mut self, generic_args: &'v GenericArgs<'v>) {
429         walk_generic_args(self, generic_args)
430     }
431     fn visit_assoc_type_binding(&mut self, type_binding: &'v TypeBinding<'v>) {
432         walk_assoc_type_binding(self, type_binding)
433     }
434     fn visit_attribute(&mut self, _attr: &'v Attribute) {}
435     fn visit_associated_item_kind(&mut self, kind: &'v AssocItemKind) {
436         walk_associated_item_kind(self, kind);
437     }
438     fn visit_defaultness(&mut self, defaultness: &'v Defaultness) {
439         walk_defaultness(self, defaultness);
440     }
441     fn visit_inline_asm(&mut self, asm: &'v InlineAsm<'v>, id: HirId) {
442         walk_inline_asm(self, asm, id);
443     }
444 }
445
446 pub fn walk_param<'v, V: Visitor<'v>>(visitor: &mut V, param: &'v Param<'v>) {
447     visitor.visit_id(param.hir_id);
448     visitor.visit_pat(&param.pat);
449 }
450
451 pub fn walk_item<'v, V: Visitor<'v>>(visitor: &mut V, item: &'v Item<'v>) {
452     visitor.visit_ident(item.ident);
453     match item.kind {
454         ItemKind::ExternCrate(orig_name) => {
455             visitor.visit_id(item.hir_id());
456             if let Some(orig_name) = orig_name {
457                 visitor.visit_name(orig_name);
458             }
459         }
460         ItemKind::Use(ref path, _) => {
461             visitor.visit_use(path, item.hir_id());
462         }
463         ItemKind::Static(ref typ, _, body) | ItemKind::Const(ref typ, body) => {
464             visitor.visit_id(item.hir_id());
465             visitor.visit_ty(typ);
466             visitor.visit_nested_body(body);
467         }
468         ItemKind::Fn(ref sig, ref generics, body_id) => visitor.visit_fn(
469             FnKind::ItemFn(item.ident, generics, sig.header),
470             &sig.decl,
471             body_id,
472             item.span,
473             item.hir_id(),
474         ),
475         ItemKind::Macro(..) => {
476             visitor.visit_id(item.hir_id());
477         }
478         ItemKind::Mod(ref module) => {
479             // `visit_mod()` takes care of visiting the `Item`'s `HirId`.
480             visitor.visit_mod(module, item.span, item.hir_id())
481         }
482         ItemKind::ForeignMod { abi: _, items } => {
483             visitor.visit_id(item.hir_id());
484             walk_list!(visitor, visit_foreign_item_ref, items);
485         }
486         ItemKind::GlobalAsm(asm) => {
487             visitor.visit_id(item.hir_id());
488             visitor.visit_inline_asm(asm, item.hir_id());
489         }
490         ItemKind::TyAlias(ref ty, ref generics) => {
491             visitor.visit_id(item.hir_id());
492             visitor.visit_ty(ty);
493             visitor.visit_generics(generics)
494         }
495         ItemKind::OpaqueTy(OpaqueTy { ref generics, bounds, .. }) => {
496             visitor.visit_id(item.hir_id());
497             walk_generics(visitor, generics);
498             walk_list!(visitor, visit_param_bound, bounds);
499         }
500         ItemKind::Enum(ref enum_definition, ref generics) => {
501             visitor.visit_generics(generics);
502             // `visit_enum_def()` takes care of visiting the `Item`'s `HirId`.
503             visitor.visit_enum_def(enum_definition, item.hir_id())
504         }
505         ItemKind::Impl(Impl {
506             unsafety: _,
507             defaultness: _,
508             polarity: _,
509             constness: _,
510             defaultness_span: _,
511             ref generics,
512             ref of_trait,
513             ref self_ty,
514             items,
515         }) => {
516             visitor.visit_id(item.hir_id());
517             visitor.visit_generics(generics);
518             walk_list!(visitor, visit_trait_ref, of_trait);
519             visitor.visit_ty(self_ty);
520             walk_list!(visitor, visit_impl_item_ref, *items);
521         }
522         ItemKind::Struct(ref struct_definition, ref generics)
523         | ItemKind::Union(ref struct_definition, ref generics) => {
524             visitor.visit_generics(generics);
525             visitor.visit_id(item.hir_id());
526             visitor.visit_variant_data(struct_definition);
527         }
528         ItemKind::Trait(.., ref generics, bounds, trait_item_refs) => {
529             visitor.visit_id(item.hir_id());
530             visitor.visit_generics(generics);
531             walk_list!(visitor, visit_param_bound, bounds);
532             walk_list!(visitor, visit_trait_item_ref, trait_item_refs);
533         }
534         ItemKind::TraitAlias(ref generics, bounds) => {
535             visitor.visit_id(item.hir_id());
536             visitor.visit_generics(generics);
537             walk_list!(visitor, visit_param_bound, bounds);
538         }
539     }
540 }
541
542 pub fn walk_body<'v, V: Visitor<'v>>(visitor: &mut V, body: &'v Body<'v>) {
543     walk_list!(visitor, visit_param, body.params);
544     visitor.visit_expr(&body.value);
545 }
546
547 pub fn walk_ident<'v, V: Visitor<'v>>(visitor: &mut V, ident: Ident) {
548     visitor.visit_name(ident.name);
549 }
550
551 pub fn walk_mod<'v, V: Visitor<'v>>(visitor: &mut V, module: &'v Mod<'v>, mod_hir_id: HirId) {
552     visitor.visit_id(mod_hir_id);
553     for &item_id in module.item_ids {
554         visitor.visit_nested_item(item_id);
555     }
556 }
557
558 pub fn walk_foreign_item<'v, V: Visitor<'v>>(visitor: &mut V, foreign_item: &'v ForeignItem<'v>) {
559     visitor.visit_id(foreign_item.hir_id());
560     visitor.visit_ident(foreign_item.ident);
561
562     match foreign_item.kind {
563         ForeignItemKind::Fn(ref function_declaration, param_names, ref generics) => {
564             visitor.visit_generics(generics);
565             visitor.visit_fn_decl(function_declaration);
566             for &param_name in param_names {
567                 visitor.visit_ident(param_name);
568             }
569         }
570         ForeignItemKind::Static(ref typ, _) => visitor.visit_ty(typ),
571         ForeignItemKind::Type => (),
572     }
573 }
574
575 pub fn walk_local<'v, V: Visitor<'v>>(visitor: &mut V, local: &'v Local<'v>) {
576     // Intentionally visiting the expr first - the initialization expr
577     // dominates the local's definition.
578     walk_list!(visitor, visit_expr, &local.init);
579     visitor.visit_id(local.hir_id);
580     visitor.visit_pat(&local.pat);
581     if let Some(els) = local.els {
582         visitor.visit_block(els);
583     }
584     walk_list!(visitor, visit_ty, &local.ty);
585 }
586
587 pub fn walk_block<'v, V: Visitor<'v>>(visitor: &mut V, block: &'v Block<'v>) {
588     visitor.visit_id(block.hir_id);
589     walk_list!(visitor, visit_stmt, block.stmts);
590     walk_list!(visitor, visit_expr, &block.expr);
591 }
592
593 pub fn walk_stmt<'v, V: Visitor<'v>>(visitor: &mut V, statement: &'v Stmt<'v>) {
594     visitor.visit_id(statement.hir_id);
595     match statement.kind {
596         StmtKind::Local(ref local) => visitor.visit_local(local),
597         StmtKind::Item(item) => visitor.visit_nested_item(item),
598         StmtKind::Expr(ref expression) | StmtKind::Semi(ref expression) => {
599             visitor.visit_expr(expression)
600         }
601     }
602 }
603
604 pub fn walk_arm<'v, V: Visitor<'v>>(visitor: &mut V, arm: &'v Arm<'v>) {
605     visitor.visit_id(arm.hir_id);
606     visitor.visit_pat(&arm.pat);
607     if let Some(ref g) = arm.guard {
608         match g {
609             Guard::If(ref e) => visitor.visit_expr(e),
610             Guard::IfLet(ref l) => {
611                 visitor.visit_let_expr(l);
612             }
613         }
614     }
615     visitor.visit_expr(&arm.body);
616 }
617
618 pub fn walk_pat<'v, V: Visitor<'v>>(visitor: &mut V, pattern: &'v Pat<'v>) {
619     visitor.visit_id(pattern.hir_id);
620     match pattern.kind {
621         PatKind::TupleStruct(ref qpath, children, _) => {
622             visitor.visit_qpath(qpath, pattern.hir_id, pattern.span);
623             walk_list!(visitor, visit_pat, children);
624         }
625         PatKind::Path(ref qpath) => {
626             visitor.visit_qpath(qpath, pattern.hir_id, pattern.span);
627         }
628         PatKind::Struct(ref qpath, fields, _) => {
629             visitor.visit_qpath(qpath, pattern.hir_id, pattern.span);
630             walk_list!(visitor, visit_pat_field, fields);
631         }
632         PatKind::Or(pats) => walk_list!(visitor, visit_pat, pats),
633         PatKind::Tuple(tuple_elements, _) => {
634             walk_list!(visitor, visit_pat, tuple_elements);
635         }
636         PatKind::Box(ref subpattern) | PatKind::Ref(ref subpattern, _) => {
637             visitor.visit_pat(subpattern)
638         }
639         PatKind::Binding(_, _hir_id, ident, ref optional_subpattern) => {
640             visitor.visit_ident(ident);
641             walk_list!(visitor, visit_pat, optional_subpattern);
642         }
643         PatKind::Lit(ref expression) => visitor.visit_expr(expression),
644         PatKind::Range(ref lower_bound, ref upper_bound, _) => {
645             walk_list!(visitor, visit_expr, lower_bound);
646             walk_list!(visitor, visit_expr, upper_bound);
647         }
648         PatKind::Wild => (),
649         PatKind::Slice(prepatterns, ref slice_pattern, postpatterns) => {
650             walk_list!(visitor, visit_pat, prepatterns);
651             walk_list!(visitor, visit_pat, slice_pattern);
652             walk_list!(visitor, visit_pat, postpatterns);
653         }
654     }
655 }
656
657 pub fn walk_pat_field<'v, V: Visitor<'v>>(visitor: &mut V, field: &'v PatField<'v>) {
658     visitor.visit_id(field.hir_id);
659     visitor.visit_ident(field.ident);
660     visitor.visit_pat(&field.pat)
661 }
662
663 pub fn walk_array_len<'v, V: Visitor<'v>>(visitor: &mut V, len: &'v ArrayLen) {
664     match len {
665         &ArrayLen::Infer(hir_id, _span) => visitor.visit_id(hir_id),
666         ArrayLen::Body(c) => visitor.visit_anon_const(c),
667     }
668 }
669
670 pub fn walk_anon_const<'v, V: Visitor<'v>>(visitor: &mut V, constant: &'v AnonConst) {
671     visitor.visit_id(constant.hir_id);
672     visitor.visit_nested_body(constant.body);
673 }
674
675 pub fn walk_expr<'v, V: Visitor<'v>>(visitor: &mut V, expression: &'v Expr<'v>) {
676     visitor.visit_id(expression.hir_id);
677     match expression.kind {
678         ExprKind::Box(ref subexpression) => visitor.visit_expr(subexpression),
679         ExprKind::Array(subexpressions) => {
680             walk_list!(visitor, visit_expr, subexpressions);
681         }
682         ExprKind::ConstBlock(ref anon_const) => visitor.visit_anon_const(anon_const),
683         ExprKind::Repeat(ref element, ref count) => {
684             visitor.visit_expr(element);
685             visitor.visit_array_length(count)
686         }
687         ExprKind::Struct(ref qpath, fields, ref optional_base) => {
688             visitor.visit_qpath(qpath, expression.hir_id, expression.span);
689             walk_list!(visitor, visit_expr_field, fields);
690             walk_list!(visitor, visit_expr, optional_base);
691         }
692         ExprKind::Tup(subexpressions) => {
693             walk_list!(visitor, visit_expr, subexpressions);
694         }
695         ExprKind::Call(ref callee_expression, arguments) => {
696             visitor.visit_expr(callee_expression);
697             walk_list!(visitor, visit_expr, arguments);
698         }
699         ExprKind::MethodCall(ref segment, receiver, arguments, _) => {
700             visitor.visit_path_segment(segment);
701             visitor.visit_expr(receiver);
702             walk_list!(visitor, visit_expr, arguments);
703         }
704         ExprKind::Binary(_, ref left_expression, ref right_expression) => {
705             visitor.visit_expr(left_expression);
706             visitor.visit_expr(right_expression)
707         }
708         ExprKind::AddrOf(_, _, ref subexpression) | ExprKind::Unary(_, ref subexpression) => {
709             visitor.visit_expr(subexpression)
710         }
711         ExprKind::Cast(ref subexpression, ref typ) | ExprKind::Type(ref subexpression, ref typ) => {
712             visitor.visit_expr(subexpression);
713             visitor.visit_ty(typ)
714         }
715         ExprKind::DropTemps(ref subexpression) => {
716             visitor.visit_expr(subexpression);
717         }
718         ExprKind::Let(ref let_expr) => visitor.visit_let_expr(let_expr),
719         ExprKind::If(ref cond, ref then, ref else_opt) => {
720             visitor.visit_expr(cond);
721             visitor.visit_expr(then);
722             walk_list!(visitor, visit_expr, else_opt);
723         }
724         ExprKind::Loop(ref block, ref opt_label, _, _) => {
725             walk_list!(visitor, visit_label, opt_label);
726             visitor.visit_block(block);
727         }
728         ExprKind::Match(ref subexpression, arms, _) => {
729             visitor.visit_expr(subexpression);
730             walk_list!(visitor, visit_arm, arms);
731         }
732         ExprKind::Closure(&Closure {
733             binder: _,
734             bound_generic_params,
735             fn_decl,
736             body,
737             capture_clause: _,
738             fn_decl_span: _,
739             movability: _,
740         }) => {
741             walk_list!(visitor, visit_generic_param, bound_generic_params);
742             visitor.visit_fn(FnKind::Closure, fn_decl, body, expression.span, expression.hir_id)
743         }
744         ExprKind::Block(ref block, ref opt_label) => {
745             walk_list!(visitor, visit_label, opt_label);
746             visitor.visit_block(block);
747         }
748         ExprKind::Assign(ref lhs, ref rhs, _) => {
749             visitor.visit_expr(rhs);
750             visitor.visit_expr(lhs)
751         }
752         ExprKind::AssignOp(_, ref left_expression, ref right_expression) => {
753             visitor.visit_expr(right_expression);
754             visitor.visit_expr(left_expression);
755         }
756         ExprKind::Field(ref subexpression, ident) => {
757             visitor.visit_expr(subexpression);
758             visitor.visit_ident(ident);
759         }
760         ExprKind::Index(ref main_expression, ref index_expression) => {
761             visitor.visit_expr(main_expression);
762             visitor.visit_expr(index_expression)
763         }
764         ExprKind::Path(ref qpath) => {
765             visitor.visit_qpath(qpath, expression.hir_id, expression.span);
766         }
767         ExprKind::Break(ref destination, ref opt_expr) => {
768             walk_list!(visitor, visit_label, &destination.label);
769             walk_list!(visitor, visit_expr, opt_expr);
770         }
771         ExprKind::Continue(ref destination) => {
772             walk_list!(visitor, visit_label, &destination.label);
773         }
774         ExprKind::Ret(ref optional_expression) => {
775             walk_list!(visitor, visit_expr, optional_expression);
776         }
777         ExprKind::InlineAsm(ref asm) => {
778             visitor.visit_inline_asm(asm, expression.hir_id);
779         }
780         ExprKind::Yield(ref subexpression, _) => {
781             visitor.visit_expr(subexpression);
782         }
783         ExprKind::Lit(_) | ExprKind::Err => {}
784     }
785 }
786
787 pub fn walk_let_expr<'v, V: Visitor<'v>>(visitor: &mut V, let_expr: &'v Let<'v>) {
788     // match the visit order in walk_local
789     visitor.visit_expr(let_expr.init);
790     visitor.visit_id(let_expr.hir_id);
791     visitor.visit_pat(let_expr.pat);
792     walk_list!(visitor, visit_ty, let_expr.ty);
793 }
794
795 pub fn walk_expr_field<'v, V: Visitor<'v>>(visitor: &mut V, field: &'v ExprField<'v>) {
796     visitor.visit_id(field.hir_id);
797     visitor.visit_ident(field.ident);
798     visitor.visit_expr(&field.expr)
799 }
800
801 pub fn walk_ty<'v, V: Visitor<'v>>(visitor: &mut V, typ: &'v Ty<'v>) {
802     visitor.visit_id(typ.hir_id);
803
804     match typ.kind {
805         TyKind::Slice(ref ty) => visitor.visit_ty(ty),
806         TyKind::Ptr(ref mutable_type) => visitor.visit_ty(&mutable_type.ty),
807         TyKind::Rptr(ref lifetime, ref mutable_type) => {
808             visitor.visit_lifetime(lifetime);
809             visitor.visit_ty(&mutable_type.ty)
810         }
811         TyKind::Never => {}
812         TyKind::Tup(tuple_element_types) => {
813             walk_list!(visitor, visit_ty, tuple_element_types);
814         }
815         TyKind::BareFn(ref function_declaration) => {
816             walk_list!(visitor, visit_generic_param, function_declaration.generic_params);
817             visitor.visit_fn_decl(&function_declaration.decl);
818         }
819         TyKind::Path(ref qpath) => {
820             visitor.visit_qpath(qpath, typ.hir_id, typ.span);
821         }
822         TyKind::OpaqueDef(item_id, lifetimes, _in_trait) => {
823             visitor.visit_nested_item(item_id);
824             walk_list!(visitor, visit_generic_arg, lifetimes);
825         }
826         TyKind::Array(ref ty, ref length) => {
827             visitor.visit_ty(ty);
828             visitor.visit_array_length(length)
829         }
830         TyKind::TraitObject(bounds, ref lifetime, _syntax) => {
831             for bound in bounds {
832                 visitor.visit_poly_trait_ref(bound);
833             }
834             visitor.visit_lifetime(lifetime);
835         }
836         TyKind::Typeof(ref expression) => visitor.visit_anon_const(expression),
837         TyKind::Infer | TyKind::Err => {}
838     }
839 }
840
841 pub fn walk_generic_param<'v, V: Visitor<'v>>(visitor: &mut V, param: &'v GenericParam<'v>) {
842     visitor.visit_id(param.hir_id);
843     match param.name {
844         ParamName::Plain(ident) => visitor.visit_ident(ident),
845         ParamName::Error | ParamName::Fresh => {}
846     }
847     match param.kind {
848         GenericParamKind::Lifetime { .. } => {}
849         GenericParamKind::Type { ref default, .. } => walk_list!(visitor, visit_ty, default),
850         GenericParamKind::Const { ref ty, ref default } => {
851             visitor.visit_ty(ty);
852             if let Some(ref default) = default {
853                 visitor.visit_const_param_default(param.hir_id, default);
854             }
855         }
856     }
857 }
858
859 pub fn walk_const_param_default<'v, V: Visitor<'v>>(visitor: &mut V, ct: &'v AnonConst) {
860     visitor.visit_anon_const(ct)
861 }
862
863 pub fn walk_generics<'v, V: Visitor<'v>>(visitor: &mut V, generics: &'v Generics<'v>) {
864     walk_list!(visitor, visit_generic_param, generics.params);
865     walk_list!(visitor, visit_where_predicate, generics.predicates);
866 }
867
868 pub fn walk_where_predicate<'v, V: Visitor<'v>>(
869     visitor: &mut V,
870     predicate: &'v WherePredicate<'v>,
871 ) {
872     match *predicate {
873         WherePredicate::BoundPredicate(WhereBoundPredicate {
874             hir_id,
875             ref bounded_ty,
876             bounds,
877             bound_generic_params,
878             origin: _,
879             span: _,
880         }) => {
881             visitor.visit_id(hir_id);
882             visitor.visit_ty(bounded_ty);
883             walk_list!(visitor, visit_param_bound, bounds);
884             walk_list!(visitor, visit_generic_param, bound_generic_params);
885         }
886         WherePredicate::RegionPredicate(WhereRegionPredicate {
887             ref lifetime,
888             bounds,
889             span: _,
890             in_where_clause: _,
891         }) => {
892             visitor.visit_lifetime(lifetime);
893             walk_list!(visitor, visit_param_bound, bounds);
894         }
895         WherePredicate::EqPredicate(WhereEqPredicate { ref lhs_ty, ref rhs_ty, span: _ }) => {
896             visitor.visit_ty(lhs_ty);
897             visitor.visit_ty(rhs_ty);
898         }
899     }
900 }
901
902 pub fn walk_fn_decl<'v, V: Visitor<'v>>(visitor: &mut V, function_declaration: &'v FnDecl<'v>) {
903     for ty in function_declaration.inputs {
904         visitor.visit_ty(ty)
905     }
906     walk_fn_ret_ty(visitor, &function_declaration.output)
907 }
908
909 pub fn walk_fn_ret_ty<'v, V: Visitor<'v>>(visitor: &mut V, ret_ty: &'v FnRetTy<'v>) {
910     if let FnRetTy::Return(ref output_ty) = *ret_ty {
911         visitor.visit_ty(output_ty)
912     }
913 }
914
915 pub fn walk_fn<'v, V: Visitor<'v>>(
916     visitor: &mut V,
917     function_kind: FnKind<'v>,
918     function_declaration: &'v FnDecl<'v>,
919     body_id: BodyId,
920     id: HirId,
921 ) {
922     visitor.visit_id(id);
923     visitor.visit_fn_decl(function_declaration);
924     walk_fn_kind(visitor, function_kind);
925     visitor.visit_nested_body(body_id)
926 }
927
928 pub fn walk_fn_kind<'v, V: Visitor<'v>>(visitor: &mut V, function_kind: FnKind<'v>) {
929     match function_kind {
930         FnKind::ItemFn(_, generics, ..) => {
931             visitor.visit_generics(generics);
932         }
933         FnKind::Closure | FnKind::Method(..) => {}
934     }
935 }
936
937 pub fn walk_use<'v, V: Visitor<'v>>(visitor: &mut V, path: &'v Path<'v>, hir_id: HirId) {
938     visitor.visit_id(hir_id);
939     visitor.visit_path(path, hir_id);
940 }
941
942 pub fn walk_trait_item<'v, V: Visitor<'v>>(visitor: &mut V, trait_item: &'v TraitItem<'v>) {
943     // N.B., deliberately force a compilation error if/when new fields are added.
944     let TraitItem { ident, generics, ref defaultness, ref kind, span, owner_id: _ } = *trait_item;
945     let hir_id = trait_item.hir_id();
946     visitor.visit_ident(ident);
947     visitor.visit_generics(&generics);
948     visitor.visit_defaultness(&defaultness);
949     match *kind {
950         TraitItemKind::Const(ref ty, default) => {
951             visitor.visit_id(hir_id);
952             visitor.visit_ty(ty);
953             walk_list!(visitor, visit_nested_body, default);
954         }
955         TraitItemKind::Fn(ref sig, TraitFn::Required(param_names)) => {
956             visitor.visit_id(hir_id);
957             visitor.visit_fn_decl(&sig.decl);
958             for &param_name in param_names {
959                 visitor.visit_ident(param_name);
960             }
961         }
962         TraitItemKind::Fn(ref sig, TraitFn::Provided(body_id)) => {
963             visitor.visit_fn(FnKind::Method(ident, sig), &sig.decl, body_id, span, hir_id);
964         }
965         TraitItemKind::Type(bounds, ref default) => {
966             visitor.visit_id(hir_id);
967             walk_list!(visitor, visit_param_bound, bounds);
968             walk_list!(visitor, visit_ty, default);
969         }
970     }
971 }
972
973 pub fn walk_trait_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, trait_item_ref: &'v TraitItemRef) {
974     // N.B., deliberately force a compilation error if/when new fields are added.
975     let TraitItemRef { id, ident, ref kind, span: _ } = *trait_item_ref;
976     visitor.visit_nested_trait_item(id);
977     visitor.visit_ident(ident);
978     visitor.visit_associated_item_kind(kind);
979 }
980
981 pub fn walk_impl_item<'v, V: Visitor<'v>>(visitor: &mut V, impl_item: &'v ImplItem<'v>) {
982     // N.B., deliberately force a compilation error if/when new fields are added.
983     let ImplItem {
984         owner_id: _,
985         ident,
986         ref generics,
987         ref kind,
988         ref defaultness,
989         span: _,
990         vis_span: _,
991     } = *impl_item;
992
993     visitor.visit_ident(ident);
994     visitor.visit_generics(generics);
995     visitor.visit_defaultness(defaultness);
996     match *kind {
997         ImplItemKind::Const(ref ty, body) => {
998             visitor.visit_id(impl_item.hir_id());
999             visitor.visit_ty(ty);
1000             visitor.visit_nested_body(body);
1001         }
1002         ImplItemKind::Fn(ref sig, body_id) => {
1003             visitor.visit_fn(
1004                 FnKind::Method(impl_item.ident, sig),
1005                 &sig.decl,
1006                 body_id,
1007                 impl_item.span,
1008                 impl_item.hir_id(),
1009             );
1010         }
1011         ImplItemKind::Type(ref ty) => {
1012             visitor.visit_id(impl_item.hir_id());
1013             visitor.visit_ty(ty);
1014         }
1015     }
1016 }
1017
1018 pub fn walk_foreign_item_ref<'v, V: Visitor<'v>>(
1019     visitor: &mut V,
1020     foreign_item_ref: &'v ForeignItemRef,
1021 ) {
1022     // N.B., deliberately force a compilation error if/when new fields are added.
1023     let ForeignItemRef { id, ident, span: _ } = *foreign_item_ref;
1024     visitor.visit_nested_foreign_item(id);
1025     visitor.visit_ident(ident);
1026 }
1027
1028 pub fn walk_impl_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, impl_item_ref: &'v ImplItemRef) {
1029     // N.B., deliberately force a compilation error if/when new fields are added.
1030     let ImplItemRef { id, ident, ref kind, span: _, trait_item_def_id: _ } = *impl_item_ref;
1031     visitor.visit_nested_impl_item(id);
1032     visitor.visit_ident(ident);
1033     visitor.visit_associated_item_kind(kind);
1034 }
1035
1036 pub fn walk_trait_ref<'v, V: Visitor<'v>>(visitor: &mut V, trait_ref: &'v TraitRef<'v>) {
1037     visitor.visit_id(trait_ref.hir_ref_id);
1038     visitor.visit_path(&trait_ref.path, trait_ref.hir_ref_id)
1039 }
1040
1041 pub fn walk_param_bound<'v, V: Visitor<'v>>(visitor: &mut V, bound: &'v GenericBound<'v>) {
1042     match *bound {
1043         GenericBound::Trait(ref typ, _modifier) => {
1044             visitor.visit_poly_trait_ref(typ);
1045         }
1046         GenericBound::LangItemTrait(_, _span, hir_id, args) => {
1047             visitor.visit_id(hir_id);
1048             visitor.visit_generic_args(args);
1049         }
1050         GenericBound::Outlives(ref lifetime) => visitor.visit_lifetime(lifetime),
1051     }
1052 }
1053
1054 pub fn walk_poly_trait_ref<'v, V: Visitor<'v>>(visitor: &mut V, trait_ref: &'v PolyTraitRef<'v>) {
1055     walk_list!(visitor, visit_generic_param, trait_ref.bound_generic_params);
1056     visitor.visit_trait_ref(&trait_ref.trait_ref);
1057 }
1058
1059 pub fn walk_struct_def<'v, V: Visitor<'v>>(
1060     visitor: &mut V,
1061     struct_definition: &'v VariantData<'v>,
1062 ) {
1063     walk_list!(visitor, visit_id, struct_definition.ctor_hir_id());
1064     walk_list!(visitor, visit_field_def, struct_definition.fields());
1065 }
1066
1067 pub fn walk_field_def<'v, V: Visitor<'v>>(visitor: &mut V, field: &'v FieldDef<'v>) {
1068     visitor.visit_id(field.hir_id);
1069     visitor.visit_ident(field.ident);
1070     visitor.visit_ty(&field.ty);
1071 }
1072
1073 pub fn walk_enum_def<'v, V: Visitor<'v>>(
1074     visitor: &mut V,
1075     enum_definition: &'v EnumDef<'v>,
1076     item_id: HirId,
1077 ) {
1078     visitor.visit_id(item_id);
1079     walk_list!(visitor, visit_variant, enum_definition.variants);
1080 }
1081
1082 pub fn walk_variant<'v, V: Visitor<'v>>(visitor: &mut V, variant: &'v Variant<'v>) {
1083     visitor.visit_ident(variant.ident);
1084     visitor.visit_id(variant.id);
1085     visitor.visit_variant_data(&variant.data);
1086     walk_list!(visitor, visit_anon_const, &variant.disr_expr);
1087 }
1088
1089 pub fn walk_label<'v, V: Visitor<'v>>(visitor: &mut V, label: &'v Label) {
1090     visitor.visit_ident(label.ident);
1091 }
1092
1093 pub fn walk_inf<'v, V: Visitor<'v>>(visitor: &mut V, inf: &'v InferArg) {
1094     visitor.visit_id(inf.hir_id);
1095 }
1096
1097 pub fn walk_generic_arg<'v, V: Visitor<'v>>(visitor: &mut V, generic_arg: &'v GenericArg<'v>) {
1098     match generic_arg {
1099         GenericArg::Lifetime(lt) => visitor.visit_lifetime(lt),
1100         GenericArg::Type(ty) => visitor.visit_ty(ty),
1101         GenericArg::Const(ct) => visitor.visit_anon_const(&ct.value),
1102         GenericArg::Infer(inf) => visitor.visit_infer(inf),
1103     }
1104 }
1105
1106 pub fn walk_lifetime<'v, V: Visitor<'v>>(visitor: &mut V, lifetime: &'v Lifetime) {
1107     visitor.visit_id(lifetime.hir_id);
1108     match lifetime.name {
1109         LifetimeName::Param(_, ParamName::Plain(ident)) => {
1110             visitor.visit_ident(ident);
1111         }
1112         LifetimeName::Param(_, ParamName::Fresh)
1113         | LifetimeName::Param(_, ParamName::Error)
1114         | LifetimeName::Static
1115         | LifetimeName::Error
1116         | LifetimeName::ImplicitObjectLifetimeDefault
1117         | LifetimeName::Infer => {}
1118     }
1119 }
1120
1121 pub fn walk_qpath<'v, V: Visitor<'v>>(visitor: &mut V, qpath: &'v QPath<'v>, id: HirId) {
1122     match *qpath {
1123         QPath::Resolved(ref maybe_qself, ref path) => {
1124             walk_list!(visitor, visit_ty, maybe_qself);
1125             visitor.visit_path(path, id)
1126         }
1127         QPath::TypeRelative(ref qself, ref segment) => {
1128             visitor.visit_ty(qself);
1129             visitor.visit_path_segment(segment);
1130         }
1131         QPath::LangItem(..) => {}
1132     }
1133 }
1134
1135 pub fn walk_path<'v, V: Visitor<'v>>(visitor: &mut V, path: &'v Path<'v>) {
1136     for segment in path.segments {
1137         visitor.visit_path_segment(segment);
1138     }
1139 }
1140
1141 pub fn walk_path_segment<'v, V: Visitor<'v>>(visitor: &mut V, segment: &'v PathSegment<'v>) {
1142     visitor.visit_ident(segment.ident);
1143     visitor.visit_id(segment.hir_id);
1144     if let Some(ref args) = segment.args {
1145         visitor.visit_generic_args(args);
1146     }
1147 }
1148
1149 pub fn walk_generic_args<'v, V: Visitor<'v>>(visitor: &mut V, generic_args: &'v GenericArgs<'v>) {
1150     walk_list!(visitor, visit_generic_arg, generic_args.args);
1151     walk_list!(visitor, visit_assoc_type_binding, generic_args.bindings);
1152 }
1153
1154 pub fn walk_assoc_type_binding<'v, V: Visitor<'v>>(
1155     visitor: &mut V,
1156     type_binding: &'v TypeBinding<'v>,
1157 ) {
1158     visitor.visit_id(type_binding.hir_id);
1159     visitor.visit_ident(type_binding.ident);
1160     visitor.visit_generic_args(type_binding.gen_args);
1161     match type_binding.kind {
1162         TypeBindingKind::Equality { ref term } => match term {
1163             Term::Ty(ref ty) => visitor.visit_ty(ty),
1164             Term::Const(ref c) => visitor.visit_anon_const(c),
1165         },
1166         TypeBindingKind::Constraint { bounds } => walk_list!(visitor, visit_param_bound, bounds),
1167     }
1168 }
1169
1170 pub fn walk_associated_item_kind<'v, V: Visitor<'v>>(_: &mut V, _: &'v AssocItemKind) {
1171     // No visitable content here: this fn exists so you can call it if
1172     // the right thing to do, should content be added in the future,
1173     // would be to walk it.
1174 }
1175
1176 pub fn walk_defaultness<'v, V: Visitor<'v>>(_: &mut V, _: &'v Defaultness) {
1177     // No visitable content here: this fn exists so you can call it if
1178     // the right thing to do, should content be added in the future,
1179     // would be to walk it.
1180 }
1181
1182 pub fn walk_inline_asm<'v, V: Visitor<'v>>(visitor: &mut V, asm: &'v InlineAsm<'v>, id: HirId) {
1183     for (op, op_sp) in asm.operands {
1184         match op {
1185             InlineAsmOperand::In { expr, .. } | InlineAsmOperand::InOut { expr, .. } => {
1186                 visitor.visit_expr(expr)
1187             }
1188             InlineAsmOperand::Out { expr, .. } => {
1189                 if let Some(expr) = expr {
1190                     visitor.visit_expr(expr);
1191                 }
1192             }
1193             InlineAsmOperand::SplitInOut { in_expr, out_expr, .. } => {
1194                 visitor.visit_expr(in_expr);
1195                 if let Some(out_expr) = out_expr {
1196                     visitor.visit_expr(out_expr);
1197                 }
1198             }
1199             InlineAsmOperand::Const { anon_const, .. }
1200             | InlineAsmOperand::SymFn { anon_const, .. } => visitor.visit_anon_const(anon_const),
1201             InlineAsmOperand::SymStatic { path, .. } => visitor.visit_qpath(path, id, *op_sp),
1202         }
1203     }
1204 }