rustc_hir/
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 `maybe_tcx`), 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 `maybe_tcx`). Walk your crate with
34//!      `tcx.hir_walk_toplevel_module(visitor)`.
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 coroutine inference, and possibly also HIR borrowck.
66
67use rustc_ast::Label;
68use rustc_ast::visit::{VisitorResult, try_visit, visit_opt, walk_list};
69use rustc_span::def_id::LocalDefId;
70use rustc_span::{Ident, Span, Symbol};
71
72use crate::hir::*;
73
74pub trait IntoVisitor<'hir> {
75    type Visitor: Visitor<'hir>;
76    fn into_visitor(&self) -> Self::Visitor;
77}
78
79#[derive(Copy, Clone, Debug)]
80pub enum FnKind<'a> {
81    /// `#[xxx] pub async/const/extern "Abi" fn foo()`
82    ItemFn(Ident, &'a Generics<'a>, FnHeader),
83
84    /// `fn foo(&self)`
85    Method(Ident, &'a FnSig<'a>),
86
87    /// `|x, y| {}`
88    Closure,
89}
90
91impl<'a> FnKind<'a> {
92    pub fn header(&self) -> Option<&FnHeader> {
93        match *self {
94            FnKind::ItemFn(_, _, ref header) => Some(header),
95            FnKind::Method(_, ref sig) => Some(&sig.header),
96            FnKind::Closure => None,
97        }
98    }
99
100    pub fn constness(self) -> Constness {
101        self.header().map_or(Constness::NotConst, |header| header.constness)
102    }
103
104    pub fn asyncness(self) -> IsAsync {
105        self.header().map_or(IsAsync::NotAsync, |header| header.asyncness)
106    }
107}
108
109/// HIR things retrievable from `TyCtxt`, avoiding an explicit dependence on
110/// `TyCtxt`. The only impls are for `!` (where these functions are never
111/// called) and `TyCtxt` (in `rustc_middle`).
112pub trait HirTyCtxt<'hir> {
113    /// Retrieves the `Node` corresponding to `id`.
114    fn hir_node(&self, hir_id: HirId) -> Node<'hir>;
115    fn hir_body(&self, id: BodyId) -> &'hir Body<'hir>;
116    fn hir_item(&self, id: ItemId) -> &'hir Item<'hir>;
117    fn hir_trait_item(&self, id: TraitItemId) -> &'hir TraitItem<'hir>;
118    fn hir_impl_item(&self, id: ImplItemId) -> &'hir ImplItem<'hir>;
119    fn hir_foreign_item(&self, id: ForeignItemId) -> &'hir ForeignItem<'hir>;
120}
121
122// Used when no tcx is actually available, forcing manual implementation of nested visitors.
123impl<'hir> HirTyCtxt<'hir> for ! {
124    fn hir_node(&self, _: HirId) -> Node<'hir> {
125        unreachable!();
126    }
127    fn hir_body(&self, _: BodyId) -> &'hir Body<'hir> {
128        unreachable!();
129    }
130    fn hir_item(&self, _: ItemId) -> &'hir Item<'hir> {
131        unreachable!();
132    }
133    fn hir_trait_item(&self, _: TraitItemId) -> &'hir TraitItem<'hir> {
134        unreachable!();
135    }
136    fn hir_impl_item(&self, _: ImplItemId) -> &'hir ImplItem<'hir> {
137        unreachable!();
138    }
139    fn hir_foreign_item(&self, _: ForeignItemId) -> &'hir ForeignItem<'hir> {
140        unreachable!();
141    }
142}
143
144pub mod nested_filter {
145    use super::HirTyCtxt;
146
147    /// Specifies what nested things a visitor wants to visit. By "nested
148    /// things", we are referring to bits of HIR that are not directly embedded
149    /// within one another but rather indirectly, through a table in the crate.
150    /// This is done to control dependencies during incremental compilation: the
151    /// non-inline bits of HIR can be tracked and hashed separately.
152    ///
153    /// The most common choice is `OnlyBodies`, which will cause the visitor to
154    /// visit fn bodies for fns that it encounters, and closure bodies, but
155    /// skip over nested item-like things.
156    ///
157    /// See the comments at [`rustc_hir::intravisit`] for more details on the overall
158    /// visit strategy.
159    pub trait NestedFilter<'hir> {
160        type MaybeTyCtxt: HirTyCtxt<'hir>;
161
162        /// Whether the visitor visits nested "item-like" things.
163        /// E.g., item, impl-item.
164        const INTER: bool;
165        /// Whether the visitor visits "intra item-like" things.
166        /// E.g., function body, closure, `AnonConst`
167        const INTRA: bool;
168    }
169
170    /// Do not visit any nested things. When you add a new
171    /// "non-nested" thing, you will want to audit such uses to see if
172    /// they remain valid.
173    ///
174    /// Use this if you are only walking some particular kind of tree
175    /// (i.e., a type, or fn signature) and you don't want to thread a
176    /// `tcx` around.
177    pub struct None(());
178    impl NestedFilter<'_> for None {
179        type MaybeTyCtxt = !;
180        const INTER: bool = false;
181        const INTRA: bool = false;
182    }
183}
184
185use nested_filter::NestedFilter;
186
187/// Each method of the Visitor trait is a hook to be potentially
188/// overridden. Each method's default implementation recursively visits
189/// the substructure of the input via the corresponding `walk` method;
190/// e.g., the `visit_mod` method by default calls `intravisit::walk_mod`.
191///
192/// Note that this visitor does NOT visit nested items by default
193/// (this is why the module is called `intravisit`, to distinguish it
194/// from the AST's `visit` module, which acts differently). If you
195/// simply want to visit all items in the crate in some order, you
196/// should call `tcx.hir_visit_all_item_likes_in_crate`. Otherwise, see the comment
197/// on `visit_nested_item` for details on how to visit nested items.
198///
199/// If you want to ensure that your code handles every variant
200/// explicitly, you need to override each method. (And you also need
201/// to monitor future changes to `Visitor` in case a new method with a
202/// new default implementation gets introduced.)
203///
204/// Every `walk_*` method uses deconstruction to access fields of structs and
205/// enums. This will result in a compile error if a field is added, which makes
206/// it more likely the appropriate visit call will be added for it.
207pub trait Visitor<'v>: Sized {
208    // This type should not be overridden, it exists for convenient usage as `Self::MaybeTyCtxt`.
209    type MaybeTyCtxt: HirTyCtxt<'v> = <Self::NestedFilter as NestedFilter<'v>>::MaybeTyCtxt;
210
211    ///////////////////////////////////////////////////////////////////////////
212    // Nested items.
213
214    /// Override this type to control which nested HIR are visited; see
215    /// [`NestedFilter`] for details. If you override this type, you
216    /// must also override [`maybe_tcx`](Self::maybe_tcx).
217    ///
218    /// **If for some reason you want the nested behavior, but don't
219    /// have a `tcx` at your disposal:** then override the
220    /// `visit_nested_XXX` methods. If a new `visit_nested_XXX` variant is
221    /// added in the future, it will cause a panic which can be detected
222    /// and fixed appropriately.
223    type NestedFilter: NestedFilter<'v> = nested_filter::None;
224
225    /// The result type of the `visit_*` methods. Can be either `()`,
226    /// or `ControlFlow<T>`.
227    type Result: VisitorResult = ();
228
229    /// If `type NestedFilter` is set to visit nested items, this method
230    /// must also be overridden to provide a map to retrieve nested items.
231    fn maybe_tcx(&mut self) -> Self::MaybeTyCtxt {
232        panic!(
233            "maybe_tcx must be implemented or consider using \
234            `type NestedFilter = nested_filter::None` (the default)"
235        );
236    }
237
238    /// Invoked when a nested item is encountered. By default, when
239    /// `Self::NestedFilter` is `nested_filter::None`, this method does
240    /// nothing. **You probably don't want to override this method** --
241    /// instead, override [`Self::NestedFilter`] or use the "shallow" or
242    /// "deep" visit patterns described at
243    /// [`rustc_hir::intravisit`]. The only reason to override
244    /// this method is if you want a nested pattern but cannot supply a
245    /// `TyCtxt`; see `maybe_tcx` for advice.
246    fn visit_nested_item(&mut self, id: ItemId) -> Self::Result {
247        if Self::NestedFilter::INTER {
248            let item = self.maybe_tcx().hir_item(id);
249            try_visit!(self.visit_item(item));
250        }
251        Self::Result::output()
252    }
253
254    /// Like `visit_nested_item()`, but for trait items. See
255    /// `visit_nested_item()` for advice on when to override this
256    /// method.
257    fn visit_nested_trait_item(&mut self, id: TraitItemId) -> Self::Result {
258        if Self::NestedFilter::INTER {
259            let item = self.maybe_tcx().hir_trait_item(id);
260            try_visit!(self.visit_trait_item(item));
261        }
262        Self::Result::output()
263    }
264
265    /// Like `visit_nested_item()`, but for impl items. See
266    /// `visit_nested_item()` for advice on when to override this
267    /// method.
268    fn visit_nested_impl_item(&mut self, id: ImplItemId) -> Self::Result {
269        if Self::NestedFilter::INTER {
270            let item = self.maybe_tcx().hir_impl_item(id);
271            try_visit!(self.visit_impl_item(item));
272        }
273        Self::Result::output()
274    }
275
276    /// Like `visit_nested_item()`, but for foreign items. See
277    /// `visit_nested_item()` for advice on when to override this
278    /// method.
279    fn visit_nested_foreign_item(&mut self, id: ForeignItemId) -> Self::Result {
280        if Self::NestedFilter::INTER {
281            let item = self.maybe_tcx().hir_foreign_item(id);
282            try_visit!(self.visit_foreign_item(item));
283        }
284        Self::Result::output()
285    }
286
287    /// Invoked to visit the body of a function, method or closure. Like
288    /// `visit_nested_item`, does nothing by default unless you override
289    /// `Self::NestedFilter`.
290    fn visit_nested_body(&mut self, id: BodyId) -> Self::Result {
291        if Self::NestedFilter::INTRA {
292            let body = self.maybe_tcx().hir_body(id);
293            try_visit!(self.visit_body(body));
294        }
295        Self::Result::output()
296    }
297
298    fn visit_param(&mut self, param: &'v Param<'v>) -> Self::Result {
299        walk_param(self, param)
300    }
301
302    /// Visits the top-level item and (optionally) nested items / impl items. See
303    /// `visit_nested_item` for details.
304    fn visit_item(&mut self, i: &'v Item<'v>) -> Self::Result {
305        walk_item(self, i)
306    }
307
308    fn visit_body(&mut self, b: &Body<'v>) -> Self::Result {
309        walk_body(self, b)
310    }
311
312    ///////////////////////////////////////////////////////////////////////////
313
314    fn visit_id(&mut self, _hir_id: HirId) -> Self::Result {
315        Self::Result::output()
316    }
317    fn visit_name(&mut self, _name: Symbol) -> Self::Result {
318        Self::Result::output()
319    }
320    fn visit_ident(&mut self, ident: Ident) -> Self::Result {
321        walk_ident(self, ident)
322    }
323    fn visit_mod(&mut self, m: &'v Mod<'v>, _s: Span, _n: HirId) -> Self::Result {
324        walk_mod(self, m)
325    }
326    fn visit_foreign_item(&mut self, i: &'v ForeignItem<'v>) -> Self::Result {
327        walk_foreign_item(self, i)
328    }
329    fn visit_local(&mut self, l: &'v LetStmt<'v>) -> Self::Result {
330        walk_local(self, l)
331    }
332    fn visit_block(&mut self, b: &'v Block<'v>) -> Self::Result {
333        walk_block(self, b)
334    }
335    fn visit_stmt(&mut self, s: &'v Stmt<'v>) -> Self::Result {
336        walk_stmt(self, s)
337    }
338    fn visit_arm(&mut self, a: &'v Arm<'v>) -> Self::Result {
339        walk_arm(self, a)
340    }
341    fn visit_pat(&mut self, p: &'v Pat<'v>) -> Self::Result {
342        walk_pat(self, p)
343    }
344    fn visit_pat_field(&mut self, f: &'v PatField<'v>) -> Self::Result {
345        walk_pat_field(self, f)
346    }
347    fn visit_pat_expr(&mut self, expr: &'v PatExpr<'v>) -> Self::Result {
348        walk_pat_expr(self, expr)
349    }
350    fn visit_lit(&mut self, _hir_id: HirId, _lit: Lit, _negated: bool) -> Self::Result {
351        Self::Result::output()
352    }
353    fn visit_anon_const(&mut self, c: &'v AnonConst) -> Self::Result {
354        walk_anon_const(self, c)
355    }
356    fn visit_inline_const(&mut self, c: &'v ConstBlock) -> Self::Result {
357        walk_inline_const(self, c)
358    }
359
360    fn visit_generic_arg(&mut self, generic_arg: &'v GenericArg<'v>) -> Self::Result {
361        walk_generic_arg(self, generic_arg)
362    }
363
364    /// All types are treated as ambiguous types for the purposes of hir visiting in
365    /// order to ensure that visitors can handle infer vars without it being too error-prone.
366    ///
367    /// See the doc comments on [`Ty`] for an explanation of what it means for a type to be
368    /// ambiguous.
369    ///
370    /// The [`Visitor::visit_infer`] method should be overridden in order to handle infer vars.
371    fn visit_ty(&mut self, t: &'v Ty<'v, AmbigArg>) -> Self::Result {
372        walk_ty(self, t)
373    }
374
375    /// All consts are treated as ambiguous consts for the purposes of hir visiting in
376    /// order to ensure that visitors can handle infer vars without it being too error-prone.
377    ///
378    /// See the doc comments on [`ConstArg`] for an explanation of what it means for a const to be
379    /// ambiguous.
380    ///
381    /// The [`Visitor::visit_infer`] method should be overridden in order to handle infer vars.
382    fn visit_const_arg(&mut self, c: &'v ConstArg<'v, AmbigArg>) -> Self::Result {
383        walk_ambig_const_arg(self, c)
384    }
385
386    #[allow(unused_variables)]
387    fn visit_infer(&mut self, inf_id: HirId, inf_span: Span, kind: InferKind<'v>) -> Self::Result {
388        self.visit_id(inf_id)
389    }
390
391    fn visit_lifetime(&mut self, lifetime: &'v Lifetime) -> Self::Result {
392        walk_lifetime(self, lifetime)
393    }
394
395    fn visit_expr(&mut self, ex: &'v Expr<'v>) -> Self::Result {
396        walk_expr(self, ex)
397    }
398    fn visit_expr_field(&mut self, field: &'v ExprField<'v>) -> Self::Result {
399        walk_expr_field(self, field)
400    }
401    fn visit_pattern_type_pattern(&mut self, p: &'v TyPat<'v>) -> Self::Result {
402        walk_ty_pat(self, p)
403    }
404    fn visit_generic_param(&mut self, p: &'v GenericParam<'v>) -> Self::Result {
405        walk_generic_param(self, p)
406    }
407    fn visit_const_param_default(&mut self, _param: HirId, ct: &'v ConstArg<'v>) -> Self::Result {
408        walk_const_param_default(self, ct)
409    }
410    fn visit_generics(&mut self, g: &'v Generics<'v>) -> Self::Result {
411        walk_generics(self, g)
412    }
413    fn visit_where_predicate(&mut self, predicate: &'v WherePredicate<'v>) -> Self::Result {
414        walk_where_predicate(self, predicate)
415    }
416    fn visit_fn_ret_ty(&mut self, ret_ty: &'v FnRetTy<'v>) -> Self::Result {
417        walk_fn_ret_ty(self, ret_ty)
418    }
419    fn visit_fn_decl(&mut self, fd: &'v FnDecl<'v>) -> Self::Result {
420        walk_fn_decl(self, fd)
421    }
422    fn visit_fn(
423        &mut self,
424        fk: FnKind<'v>,
425        fd: &'v FnDecl<'v>,
426        b: BodyId,
427        _: Span,
428        id: LocalDefId,
429    ) -> Self::Result {
430        walk_fn(self, fk, fd, b, id)
431    }
432    fn visit_use(&mut self, path: &'v UsePath<'v>, hir_id: HirId) -> Self::Result {
433        walk_use(self, path, hir_id)
434    }
435    fn visit_trait_item(&mut self, ti: &'v TraitItem<'v>) -> Self::Result {
436        walk_trait_item(self, ti)
437    }
438    fn visit_trait_item_ref(&mut self, ii: &'v TraitItemId) -> Self::Result {
439        walk_trait_item_ref(self, *ii)
440    }
441    fn visit_impl_item(&mut self, ii: &'v ImplItem<'v>) -> Self::Result {
442        walk_impl_item(self, ii)
443    }
444    fn visit_foreign_item_ref(&mut self, ii: &'v ForeignItemId) -> Self::Result {
445        walk_foreign_item_ref(self, *ii)
446    }
447    fn visit_impl_item_ref(&mut self, ii: &'v ImplItemId) -> Self::Result {
448        walk_impl_item_ref(self, *ii)
449    }
450    fn visit_trait_ref(&mut self, t: &'v TraitRef<'v>) -> Self::Result {
451        walk_trait_ref(self, t)
452    }
453    fn visit_param_bound(&mut self, bounds: &'v GenericBound<'v>) -> Self::Result {
454        walk_param_bound(self, bounds)
455    }
456    fn visit_precise_capturing_arg(&mut self, arg: &'v PreciseCapturingArg<'v>) -> Self::Result {
457        walk_precise_capturing_arg(self, arg)
458    }
459    fn visit_poly_trait_ref(&mut self, t: &'v PolyTraitRef<'v>) -> Self::Result {
460        walk_poly_trait_ref(self, t)
461    }
462    fn visit_opaque_ty(&mut self, opaque: &'v OpaqueTy<'v>) -> Self::Result {
463        walk_opaque_ty(self, opaque)
464    }
465    fn visit_variant_data(&mut self, s: &'v VariantData<'v>) -> Self::Result {
466        walk_struct_def(self, s)
467    }
468    fn visit_field_def(&mut self, s: &'v FieldDef<'v>) -> Self::Result {
469        walk_field_def(self, s)
470    }
471    fn visit_enum_def(&mut self, enum_definition: &'v EnumDef<'v>) -> Self::Result {
472        walk_enum_def(self, enum_definition)
473    }
474    fn visit_variant(&mut self, v: &'v Variant<'v>) -> Self::Result {
475        walk_variant(self, v)
476    }
477    fn visit_label(&mut self, label: &'v Label) -> Self::Result {
478        walk_label(self, label)
479    }
480    // The span is that of the surrounding type/pattern/expr/whatever.
481    fn visit_qpath(&mut self, qpath: &'v QPath<'v>, id: HirId, _span: Span) -> Self::Result {
482        walk_qpath(self, qpath, id)
483    }
484    fn visit_path(&mut self, path: &Path<'v>, _id: HirId) -> Self::Result {
485        walk_path(self, path)
486    }
487    fn visit_path_segment(&mut self, path_segment: &'v PathSegment<'v>) -> Self::Result {
488        walk_path_segment(self, path_segment)
489    }
490    fn visit_generic_args(&mut self, generic_args: &'v GenericArgs<'v>) -> Self::Result {
491        walk_generic_args(self, generic_args)
492    }
493    fn visit_assoc_item_constraint(
494        &mut self,
495        constraint: &'v AssocItemConstraint<'v>,
496    ) -> Self::Result {
497        walk_assoc_item_constraint(self, constraint)
498    }
499    fn visit_attribute(&mut self, _attr: &'v Attribute) -> Self::Result {
500        Self::Result::output()
501    }
502    fn visit_defaultness(&mut self, defaultness: &'v Defaultness) -> Self::Result {
503        walk_defaultness(self, defaultness)
504    }
505    fn visit_inline_asm(&mut self, asm: &'v InlineAsm<'v>, id: HirId) -> Self::Result {
506        walk_inline_asm(self, asm, id)
507    }
508}
509
510pub trait VisitorExt<'v>: Visitor<'v> {
511    /// Extension trait method to visit types in unambiguous positions, this is not
512    /// directly on the [`Visitor`] trait as this method should never be overridden.
513    ///
514    /// Named `visit_ty_unambig` instead of `visit_unambig_ty` to aid in discovery
515    /// by IDes when `v.visit_ty` is written.
516    fn visit_ty_unambig(&mut self, t: &'v Ty<'v>) -> Self::Result {
517        walk_unambig_ty(self, t)
518    }
519    /// Extension trait method to visit consts in unambiguous positions, this is not
520    /// directly on the [`Visitor`] trait as this method should never be overridden.
521    ///
522    /// Named `visit_const_arg_unambig` instead of `visit_unambig_const_arg` to aid in
523    /// discovery by IDes when `v.visit_const_arg` is written.
524    fn visit_const_arg_unambig(&mut self, c: &'v ConstArg<'v>) -> Self::Result {
525        walk_const_arg(self, c)
526    }
527}
528impl<'v, V: Visitor<'v>> VisitorExt<'v> for V {}
529
530pub fn walk_param<'v, V: Visitor<'v>>(visitor: &mut V, param: &'v Param<'v>) -> V::Result {
531    let Param { hir_id, pat, ty_span: _, span: _ } = param;
532    try_visit!(visitor.visit_id(*hir_id));
533    visitor.visit_pat(pat)
534}
535
536pub fn walk_item<'v, V: Visitor<'v>>(visitor: &mut V, item: &'v Item<'v>) -> V::Result {
537    let Item { owner_id: _, kind, span: _, vis_span: _, has_delayed_lints: _ } = item;
538    try_visit!(visitor.visit_id(item.hir_id()));
539    match *kind {
540        ItemKind::ExternCrate(orig_name, ident) => {
541            visit_opt!(visitor, visit_name, orig_name);
542            try_visit!(visitor.visit_ident(ident));
543        }
544        ItemKind::Use(ref path, kind) => {
545            try_visit!(visitor.visit_use(path, item.hir_id()));
546            match kind {
547                UseKind::Single(ident) => try_visit!(visitor.visit_ident(ident)),
548                UseKind::Glob | UseKind::ListStem => {}
549            }
550        }
551        ItemKind::Static(_, ident, ref typ, body) => {
552            try_visit!(visitor.visit_ident(ident));
553            try_visit!(visitor.visit_ty_unambig(typ));
554            try_visit!(visitor.visit_nested_body(body));
555        }
556        ItemKind::Const(ident, ref generics, ref typ, body) => {
557            try_visit!(visitor.visit_ident(ident));
558            try_visit!(visitor.visit_generics(generics));
559            try_visit!(visitor.visit_ty_unambig(typ));
560            try_visit!(visitor.visit_nested_body(body));
561        }
562        ItemKind::Fn { ident, sig, generics, body: body_id, .. } => {
563            try_visit!(visitor.visit_ident(ident));
564            try_visit!(visitor.visit_fn(
565                FnKind::ItemFn(ident, generics, sig.header),
566                sig.decl,
567                body_id,
568                item.span,
569                item.owner_id.def_id,
570            ));
571        }
572        ItemKind::Macro(ident, _def, _kind) => {
573            try_visit!(visitor.visit_ident(ident));
574        }
575        ItemKind::Mod(ident, ref module) => {
576            try_visit!(visitor.visit_ident(ident));
577            try_visit!(visitor.visit_mod(module, item.span, item.hir_id()));
578        }
579        ItemKind::ForeignMod { abi: _, items } => {
580            walk_list!(visitor, visit_foreign_item_ref, items);
581        }
582        ItemKind::GlobalAsm { asm: _, fake_body } => {
583            // Visit the fake body, which contains the asm statement.
584            // Therefore we should not visit the asm statement again
585            // outside of the body, or some visitors won't have their
586            // typeck results set correctly.
587            try_visit!(visitor.visit_nested_body(fake_body));
588        }
589        ItemKind::TyAlias(ident, ref generics, ref ty) => {
590            try_visit!(visitor.visit_ident(ident));
591            try_visit!(visitor.visit_generics(generics));
592            try_visit!(visitor.visit_ty_unambig(ty));
593        }
594        ItemKind::Enum(ident, ref generics, ref enum_definition) => {
595            try_visit!(visitor.visit_ident(ident));
596            try_visit!(visitor.visit_generics(generics));
597            try_visit!(visitor.visit_enum_def(enum_definition));
598        }
599        ItemKind::Impl(Impl {
600            constness: _,
601            safety: _,
602            defaultness: _,
603            polarity: _,
604            defaultness_span: _,
605            generics,
606            of_trait,
607            self_ty,
608            items,
609        }) => {
610            try_visit!(visitor.visit_generics(generics));
611            visit_opt!(visitor, visit_trait_ref, of_trait);
612            try_visit!(visitor.visit_ty_unambig(self_ty));
613            walk_list!(visitor, visit_impl_item_ref, *items);
614        }
615        ItemKind::Struct(ident, ref generics, ref struct_definition)
616        | ItemKind::Union(ident, ref generics, ref struct_definition) => {
617            try_visit!(visitor.visit_ident(ident));
618            try_visit!(visitor.visit_generics(generics));
619            try_visit!(visitor.visit_variant_data(struct_definition));
620        }
621        ItemKind::Trait(
622            _constness,
623            _is_auto,
624            _safety,
625            ident,
626            ref generics,
627            bounds,
628            trait_item_refs,
629        ) => {
630            try_visit!(visitor.visit_ident(ident));
631            try_visit!(visitor.visit_generics(generics));
632            walk_list!(visitor, visit_param_bound, bounds);
633            walk_list!(visitor, visit_trait_item_ref, trait_item_refs);
634        }
635        ItemKind::TraitAlias(ident, ref generics, bounds) => {
636            try_visit!(visitor.visit_ident(ident));
637            try_visit!(visitor.visit_generics(generics));
638            walk_list!(visitor, visit_param_bound, bounds);
639        }
640    }
641    V::Result::output()
642}
643
644pub fn walk_body<'v, V: Visitor<'v>>(visitor: &mut V, body: &Body<'v>) -> V::Result {
645    let Body { params, value } = body;
646    walk_list!(visitor, visit_param, *params);
647    visitor.visit_expr(*value)
648}
649
650pub fn walk_ident<'v, V: Visitor<'v>>(visitor: &mut V, ident: Ident) -> V::Result {
651    visitor.visit_name(ident.name)
652}
653
654pub fn walk_mod<'v, V: Visitor<'v>>(visitor: &mut V, module: &'v Mod<'v>) -> V::Result {
655    let Mod { spans: _, item_ids } = module;
656    walk_list!(visitor, visit_nested_item, item_ids.iter().copied());
657    V::Result::output()
658}
659
660pub fn walk_foreign_item<'v, V: Visitor<'v>>(
661    visitor: &mut V,
662    foreign_item: &'v ForeignItem<'v>,
663) -> V::Result {
664    let ForeignItem { ident, kind, owner_id: _, span: _, vis_span: _, has_delayed_lints: _ } =
665        foreign_item;
666    try_visit!(visitor.visit_id(foreign_item.hir_id()));
667    try_visit!(visitor.visit_ident(*ident));
668
669    match *kind {
670        ForeignItemKind::Fn(ref sig, param_idents, ref generics) => {
671            try_visit!(visitor.visit_generics(generics));
672            try_visit!(visitor.visit_fn_decl(sig.decl));
673            for ident in param_idents.iter().copied() {
674                visit_opt!(visitor, visit_ident, ident);
675            }
676        }
677        ForeignItemKind::Static(ref typ, _, _) => {
678            try_visit!(visitor.visit_ty_unambig(typ));
679        }
680        ForeignItemKind::Type => (),
681    }
682    V::Result::output()
683}
684
685pub fn walk_local<'v, V: Visitor<'v>>(visitor: &mut V, local: &'v LetStmt<'v>) -> V::Result {
686    // Intentionally visiting the expr first - the initialization expr
687    // dominates the local's definition.
688    let LetStmt { super_: _, pat, ty, init, els, hir_id, span: _, source: _ } = local;
689    visit_opt!(visitor, visit_expr, *init);
690    try_visit!(visitor.visit_id(*hir_id));
691    try_visit!(visitor.visit_pat(*pat));
692    visit_opt!(visitor, visit_block, *els);
693    visit_opt!(visitor, visit_ty_unambig, *ty);
694    V::Result::output()
695}
696
697pub fn walk_block<'v, V: Visitor<'v>>(visitor: &mut V, block: &'v Block<'v>) -> V::Result {
698    let Block { stmts, expr, hir_id, rules: _, span: _, targeted_by_break: _ } = block;
699    try_visit!(visitor.visit_id(*hir_id));
700    walk_list!(visitor, visit_stmt, *stmts);
701    visit_opt!(visitor, visit_expr, *expr);
702    V::Result::output()
703}
704
705pub fn walk_stmt<'v, V: Visitor<'v>>(visitor: &mut V, statement: &'v Stmt<'v>) -> V::Result {
706    let Stmt { kind, hir_id, span: _ } = statement;
707    try_visit!(visitor.visit_id(*hir_id));
708    match *kind {
709        StmtKind::Let(ref local) => visitor.visit_local(local),
710        StmtKind::Item(item) => visitor.visit_nested_item(item),
711        StmtKind::Expr(ref expression) | StmtKind::Semi(ref expression) => {
712            visitor.visit_expr(expression)
713        }
714    }
715}
716
717pub fn walk_arm<'v, V: Visitor<'v>>(visitor: &mut V, arm: &'v Arm<'v>) -> V::Result {
718    let Arm { hir_id, span: _, pat, guard, body } = arm;
719    try_visit!(visitor.visit_id(*hir_id));
720    try_visit!(visitor.visit_pat(*pat));
721    visit_opt!(visitor, visit_expr, *guard);
722    visitor.visit_expr(*body)
723}
724
725pub fn walk_ty_pat<'v, V: Visitor<'v>>(visitor: &mut V, pattern: &'v TyPat<'v>) -> V::Result {
726    let TyPat { kind, hir_id, span: _ } = pattern;
727    try_visit!(visitor.visit_id(*hir_id));
728    match *kind {
729        TyPatKind::Range(lower_bound, upper_bound) => {
730            try_visit!(visitor.visit_const_arg_unambig(lower_bound));
731            try_visit!(visitor.visit_const_arg_unambig(upper_bound));
732        }
733        TyPatKind::Or(patterns) => walk_list!(visitor, visit_pattern_type_pattern, patterns),
734        TyPatKind::Err(_) => (),
735    }
736    V::Result::output()
737}
738
739pub fn walk_pat<'v, V: Visitor<'v>>(visitor: &mut V, pattern: &'v Pat<'v>) -> V::Result {
740    let Pat { hir_id, kind, span, default_binding_modes: _ } = pattern;
741    try_visit!(visitor.visit_id(*hir_id));
742    match *kind {
743        PatKind::TupleStruct(ref qpath, children, _) => {
744            try_visit!(visitor.visit_qpath(qpath, *hir_id, *span));
745            walk_list!(visitor, visit_pat, children);
746        }
747        PatKind::Struct(ref qpath, fields, _) => {
748            try_visit!(visitor.visit_qpath(qpath, *hir_id, *span));
749            walk_list!(visitor, visit_pat_field, fields);
750        }
751        PatKind::Or(pats) => walk_list!(visitor, visit_pat, pats),
752        PatKind::Tuple(tuple_elements, _) => {
753            walk_list!(visitor, visit_pat, tuple_elements);
754        }
755        PatKind::Box(ref subpattern)
756        | PatKind::Deref(ref subpattern)
757        | PatKind::Ref(ref subpattern, _) => {
758            try_visit!(visitor.visit_pat(subpattern));
759        }
760        PatKind::Binding(_, _hir_id, ident, ref optional_subpattern) => {
761            try_visit!(visitor.visit_ident(ident));
762            visit_opt!(visitor, visit_pat, optional_subpattern);
763        }
764        PatKind::Expr(ref expression) => try_visit!(visitor.visit_pat_expr(expression)),
765        PatKind::Range(ref lower_bound, ref upper_bound, _) => {
766            visit_opt!(visitor, visit_pat_expr, lower_bound);
767            visit_opt!(visitor, visit_pat_expr, upper_bound);
768        }
769        PatKind::Missing | PatKind::Never | PatKind::Wild | PatKind::Err(_) => (),
770        PatKind::Slice(prepatterns, ref slice_pattern, postpatterns) => {
771            walk_list!(visitor, visit_pat, prepatterns);
772            visit_opt!(visitor, visit_pat, slice_pattern);
773            walk_list!(visitor, visit_pat, postpatterns);
774        }
775        PatKind::Guard(subpat, condition) => {
776            try_visit!(visitor.visit_pat(subpat));
777            try_visit!(visitor.visit_expr(condition));
778        }
779    }
780    V::Result::output()
781}
782
783pub fn walk_pat_field<'v, V: Visitor<'v>>(visitor: &mut V, field: &'v PatField<'v>) -> V::Result {
784    let PatField { hir_id, ident, pat, is_shorthand: _, span: _ } = field;
785    try_visit!(visitor.visit_id(*hir_id));
786    try_visit!(visitor.visit_ident(*ident));
787    visitor.visit_pat(*pat)
788}
789
790pub fn walk_pat_expr<'v, V: Visitor<'v>>(visitor: &mut V, expr: &'v PatExpr<'v>) -> V::Result {
791    let PatExpr { hir_id, span, kind } = expr;
792    try_visit!(visitor.visit_id(*hir_id));
793    match kind {
794        PatExprKind::Lit { lit, negated } => visitor.visit_lit(*hir_id, *lit, *negated),
795        PatExprKind::ConstBlock(c) => visitor.visit_inline_const(c),
796        PatExprKind::Path(qpath) => visitor.visit_qpath(qpath, *hir_id, *span),
797    }
798}
799
800pub fn walk_anon_const<'v, V: Visitor<'v>>(visitor: &mut V, constant: &'v AnonConst) -> V::Result {
801    let AnonConst { hir_id, def_id: _, body, span: _ } = constant;
802    try_visit!(visitor.visit_id(*hir_id));
803    visitor.visit_nested_body(*body)
804}
805
806pub fn walk_inline_const<'v, V: Visitor<'v>>(
807    visitor: &mut V,
808    constant: &'v ConstBlock,
809) -> V::Result {
810    let ConstBlock { hir_id, def_id: _, body } = constant;
811    try_visit!(visitor.visit_id(*hir_id));
812    visitor.visit_nested_body(*body)
813}
814
815pub fn walk_expr<'v, V: Visitor<'v>>(visitor: &mut V, expression: &'v Expr<'v>) -> V::Result {
816    let Expr { hir_id, kind, span } = expression;
817    try_visit!(visitor.visit_id(*hir_id));
818    match *kind {
819        ExprKind::Array(subexpressions) => {
820            walk_list!(visitor, visit_expr, subexpressions);
821        }
822        ExprKind::ConstBlock(ref const_block) => {
823            try_visit!(visitor.visit_inline_const(const_block))
824        }
825        ExprKind::Repeat(ref element, ref count) => {
826            try_visit!(visitor.visit_expr(element));
827            try_visit!(visitor.visit_const_arg_unambig(count));
828        }
829        ExprKind::Struct(ref qpath, fields, ref optional_base) => {
830            try_visit!(visitor.visit_qpath(qpath, *hir_id, *span));
831            walk_list!(visitor, visit_expr_field, fields);
832            match optional_base {
833                StructTailExpr::Base(base) => try_visit!(visitor.visit_expr(base)),
834                StructTailExpr::None | StructTailExpr::DefaultFields(_) => {}
835            }
836        }
837        ExprKind::Tup(subexpressions) => {
838            walk_list!(visitor, visit_expr, subexpressions);
839        }
840        ExprKind::Call(ref callee_expression, arguments) => {
841            try_visit!(visitor.visit_expr(callee_expression));
842            walk_list!(visitor, visit_expr, arguments);
843        }
844        ExprKind::MethodCall(ref segment, receiver, arguments, _) => {
845            try_visit!(visitor.visit_path_segment(segment));
846            try_visit!(visitor.visit_expr(receiver));
847            walk_list!(visitor, visit_expr, arguments);
848        }
849        ExprKind::Use(expr, _) => {
850            try_visit!(visitor.visit_expr(expr));
851        }
852        ExprKind::Binary(_, ref left_expression, ref right_expression) => {
853            try_visit!(visitor.visit_expr(left_expression));
854            try_visit!(visitor.visit_expr(right_expression));
855        }
856        ExprKind::AddrOf(_, _, ref subexpression) | ExprKind::Unary(_, ref subexpression) => {
857            try_visit!(visitor.visit_expr(subexpression));
858        }
859        ExprKind::Cast(ref subexpression, ref typ) | ExprKind::Type(ref subexpression, ref typ) => {
860            try_visit!(visitor.visit_expr(subexpression));
861            try_visit!(visitor.visit_ty_unambig(typ));
862        }
863        ExprKind::DropTemps(ref subexpression) => {
864            try_visit!(visitor.visit_expr(subexpression));
865        }
866        ExprKind::Let(LetExpr { span: _, pat, ty, init, recovered: _ }) => {
867            // match the visit order in walk_local
868            try_visit!(visitor.visit_expr(init));
869            try_visit!(visitor.visit_pat(pat));
870            visit_opt!(visitor, visit_ty_unambig, ty);
871        }
872        ExprKind::If(ref cond, ref then, ref else_opt) => {
873            try_visit!(visitor.visit_expr(cond));
874            try_visit!(visitor.visit_expr(then));
875            visit_opt!(visitor, visit_expr, else_opt);
876        }
877        ExprKind::Loop(ref block, ref opt_label, _, _) => {
878            visit_opt!(visitor, visit_label, opt_label);
879            try_visit!(visitor.visit_block(block));
880        }
881        ExprKind::Match(ref subexpression, arms, _) => {
882            try_visit!(visitor.visit_expr(subexpression));
883            walk_list!(visitor, visit_arm, arms);
884        }
885        ExprKind::Closure(&Closure {
886            def_id,
887            binder: _,
888            bound_generic_params,
889            fn_decl,
890            body,
891            capture_clause: _,
892            fn_decl_span: _,
893            fn_arg_span: _,
894            kind: _,
895            constness: _,
896        }) => {
897            walk_list!(visitor, visit_generic_param, bound_generic_params);
898            try_visit!(visitor.visit_fn(FnKind::Closure, fn_decl, body, *span, def_id));
899        }
900        ExprKind::Block(ref block, ref opt_label) => {
901            visit_opt!(visitor, visit_label, opt_label);
902            try_visit!(visitor.visit_block(block));
903        }
904        ExprKind::Assign(ref lhs, ref rhs, _) => {
905            try_visit!(visitor.visit_expr(rhs));
906            try_visit!(visitor.visit_expr(lhs));
907        }
908        ExprKind::AssignOp(_, ref left_expression, ref right_expression) => {
909            try_visit!(visitor.visit_expr(right_expression));
910            try_visit!(visitor.visit_expr(left_expression));
911        }
912        ExprKind::Field(ref subexpression, ident) => {
913            try_visit!(visitor.visit_expr(subexpression));
914            try_visit!(visitor.visit_ident(ident));
915        }
916        ExprKind::Index(ref main_expression, ref index_expression, _) => {
917            try_visit!(visitor.visit_expr(main_expression));
918            try_visit!(visitor.visit_expr(index_expression));
919        }
920        ExprKind::Path(ref qpath) => {
921            try_visit!(visitor.visit_qpath(qpath, *hir_id, *span));
922        }
923        ExprKind::Break(ref destination, ref opt_expr) => {
924            visit_opt!(visitor, visit_label, &destination.label);
925            visit_opt!(visitor, visit_expr, opt_expr);
926        }
927        ExprKind::Continue(ref destination) => {
928            visit_opt!(visitor, visit_label, &destination.label);
929        }
930        ExprKind::Ret(ref optional_expression) => {
931            visit_opt!(visitor, visit_expr, optional_expression);
932        }
933        ExprKind::Become(ref expr) => try_visit!(visitor.visit_expr(expr)),
934        ExprKind::InlineAsm(ref asm) => {
935            try_visit!(visitor.visit_inline_asm(asm, *hir_id));
936        }
937        ExprKind::OffsetOf(ref container, ref fields) => {
938            try_visit!(visitor.visit_ty_unambig(container));
939            walk_list!(visitor, visit_ident, fields.iter().copied());
940        }
941        ExprKind::Yield(ref subexpression, _) => {
942            try_visit!(visitor.visit_expr(subexpression));
943        }
944        ExprKind::UnsafeBinderCast(_kind, expr, ty) => {
945            try_visit!(visitor.visit_expr(expr));
946            visit_opt!(visitor, visit_ty_unambig, ty);
947        }
948        ExprKind::Lit(lit) => try_visit!(visitor.visit_lit(*hir_id, lit, false)),
949        ExprKind::Err(_) => {}
950    }
951    V::Result::output()
952}
953
954pub fn walk_expr_field<'v, V: Visitor<'v>>(visitor: &mut V, field: &'v ExprField<'v>) -> V::Result {
955    let ExprField { hir_id, ident, expr, span: _, is_shorthand: _ } = field;
956    try_visit!(visitor.visit_id(*hir_id));
957    try_visit!(visitor.visit_ident(*ident));
958    visitor.visit_expr(*expr)
959}
960/// We track whether an infer var is from a [`Ty`], [`ConstArg`], or [`GenericArg`] so that
961/// HIR visitors overriding [`Visitor::visit_infer`] can determine what kind of infer is being visited
962pub enum InferKind<'hir> {
963    Ty(&'hir Ty<'hir>),
964    Const(&'hir ConstArg<'hir>),
965    Ambig(&'hir InferArg),
966}
967
968pub fn walk_generic_arg<'v, V: Visitor<'v>>(
969    visitor: &mut V,
970    generic_arg: &'v GenericArg<'v>,
971) -> V::Result {
972    match generic_arg {
973        GenericArg::Lifetime(lt) => visitor.visit_lifetime(lt),
974        GenericArg::Type(ty) => visitor.visit_ty(ty),
975        GenericArg::Const(ct) => visitor.visit_const_arg(ct),
976        GenericArg::Infer(inf) => {
977            let InferArg { hir_id, span } = inf;
978            visitor.visit_infer(*hir_id, *span, InferKind::Ambig(inf))
979        }
980    }
981}
982
983pub fn walk_unambig_ty<'v, V: Visitor<'v>>(visitor: &mut V, typ: &'v Ty<'v>) -> V::Result {
984    match typ.try_as_ambig_ty() {
985        Some(ambig_ty) => visitor.visit_ty(ambig_ty),
986        None => {
987            let Ty { hir_id, span, kind: _ } = typ;
988            try_visit!(visitor.visit_id(*hir_id));
989            visitor.visit_infer(*hir_id, *span, InferKind::Ty(typ))
990        }
991    }
992}
993
994pub fn walk_ty<'v, V: Visitor<'v>>(visitor: &mut V, typ: &'v Ty<'v, AmbigArg>) -> V::Result {
995    let Ty { hir_id, span: _, kind } = typ;
996    try_visit!(visitor.visit_id(*hir_id));
997
998    match *kind {
999        TyKind::Slice(ref ty) => try_visit!(visitor.visit_ty_unambig(ty)),
1000        TyKind::Ptr(ref mutable_type) => try_visit!(visitor.visit_ty_unambig(mutable_type.ty)),
1001        TyKind::Ref(ref lifetime, ref mutable_type) => {
1002            try_visit!(visitor.visit_lifetime(lifetime));
1003            try_visit!(visitor.visit_ty_unambig(mutable_type.ty));
1004        }
1005        TyKind::Never => {}
1006        TyKind::Tup(tuple_element_types) => {
1007            walk_list!(visitor, visit_ty_unambig, tuple_element_types);
1008        }
1009        TyKind::FnPtr(ref function_declaration) => {
1010            walk_list!(visitor, visit_generic_param, function_declaration.generic_params);
1011            try_visit!(visitor.visit_fn_decl(function_declaration.decl));
1012        }
1013        TyKind::UnsafeBinder(ref unsafe_binder) => {
1014            walk_list!(visitor, visit_generic_param, unsafe_binder.generic_params);
1015            try_visit!(visitor.visit_ty_unambig(unsafe_binder.inner_ty));
1016        }
1017        TyKind::Path(ref qpath) => {
1018            try_visit!(visitor.visit_qpath(qpath, typ.hir_id, typ.span));
1019        }
1020        TyKind::OpaqueDef(opaque) => {
1021            try_visit!(visitor.visit_opaque_ty(opaque));
1022        }
1023        TyKind::TraitAscription(bounds) => {
1024            walk_list!(visitor, visit_param_bound, bounds);
1025        }
1026        TyKind::Array(ref ty, ref length) => {
1027            try_visit!(visitor.visit_ty_unambig(ty));
1028            try_visit!(visitor.visit_const_arg_unambig(length));
1029        }
1030        TyKind::TraitObject(bounds, ref lifetime) => {
1031            for bound in bounds {
1032                try_visit!(visitor.visit_poly_trait_ref(bound));
1033            }
1034            try_visit!(visitor.visit_lifetime(lifetime));
1035        }
1036        TyKind::Typeof(ref expression) => try_visit!(visitor.visit_anon_const(expression)),
1037        TyKind::InferDelegation(..) | TyKind::Err(_) => {}
1038        TyKind::Pat(ty, pat) => {
1039            try_visit!(visitor.visit_ty_unambig(ty));
1040            try_visit!(visitor.visit_pattern_type_pattern(pat));
1041        }
1042    }
1043    V::Result::output()
1044}
1045
1046pub fn walk_const_arg<'v, V: Visitor<'v>>(
1047    visitor: &mut V,
1048    const_arg: &'v ConstArg<'v>,
1049) -> V::Result {
1050    match const_arg.try_as_ambig_ct() {
1051        Some(ambig_ct) => visitor.visit_const_arg(ambig_ct),
1052        None => {
1053            let ConstArg { hir_id, kind: _ } = const_arg;
1054            try_visit!(visitor.visit_id(*hir_id));
1055            visitor.visit_infer(*hir_id, const_arg.span(), InferKind::Const(const_arg))
1056        }
1057    }
1058}
1059
1060pub fn walk_ambig_const_arg<'v, V: Visitor<'v>>(
1061    visitor: &mut V,
1062    const_arg: &'v ConstArg<'v, AmbigArg>,
1063) -> V::Result {
1064    let ConstArg { hir_id, kind } = const_arg;
1065    try_visit!(visitor.visit_id(*hir_id));
1066    match kind {
1067        ConstArgKind::Path(qpath) => visitor.visit_qpath(qpath, *hir_id, qpath.span()),
1068        ConstArgKind::Anon(anon) => visitor.visit_anon_const(*anon),
1069    }
1070}
1071
1072pub fn walk_generic_param<'v, V: Visitor<'v>>(
1073    visitor: &mut V,
1074    param: &'v GenericParam<'v>,
1075) -> V::Result {
1076    let GenericParam {
1077        hir_id,
1078        def_id: _,
1079        name,
1080        span: _,
1081        pure_wrt_drop: _,
1082        kind,
1083        colon_span: _,
1084        source: _,
1085    } = param;
1086    try_visit!(visitor.visit_id(*hir_id));
1087    match *name {
1088        ParamName::Plain(ident) | ParamName::Error(ident) => try_visit!(visitor.visit_ident(ident)),
1089        ParamName::Fresh => {}
1090    }
1091    match *kind {
1092        GenericParamKind::Lifetime { .. } => {}
1093        GenericParamKind::Type { ref default, .. } => {
1094            visit_opt!(visitor, visit_ty_unambig, default)
1095        }
1096        GenericParamKind::Const { ref ty, ref default, synthetic: _ } => {
1097            try_visit!(visitor.visit_ty_unambig(ty));
1098            if let Some(default) = default {
1099                try_visit!(visitor.visit_const_param_default(*hir_id, default));
1100            }
1101        }
1102    }
1103    V::Result::output()
1104}
1105
1106pub fn walk_const_param_default<'v, V: Visitor<'v>>(
1107    visitor: &mut V,
1108    ct: &'v ConstArg<'v>,
1109) -> V::Result {
1110    visitor.visit_const_arg_unambig(ct)
1111}
1112
1113pub fn walk_generics<'v, V: Visitor<'v>>(visitor: &mut V, generics: &'v Generics<'v>) -> V::Result {
1114    let &Generics {
1115        params,
1116        predicates,
1117        has_where_clause_predicates: _,
1118        where_clause_span: _,
1119        span: _,
1120    } = generics;
1121    walk_list!(visitor, visit_generic_param, params);
1122    walk_list!(visitor, visit_where_predicate, predicates);
1123    V::Result::output()
1124}
1125
1126pub fn walk_where_predicate<'v, V: Visitor<'v>>(
1127    visitor: &mut V,
1128    predicate: &'v WherePredicate<'v>,
1129) -> V::Result {
1130    let &WherePredicate { hir_id, kind, span: _ } = predicate;
1131    try_visit!(visitor.visit_id(hir_id));
1132    match *kind {
1133        WherePredicateKind::BoundPredicate(WhereBoundPredicate {
1134            ref bounded_ty,
1135            bounds,
1136            bound_generic_params,
1137            origin: _,
1138        }) => {
1139            try_visit!(visitor.visit_ty_unambig(bounded_ty));
1140            walk_list!(visitor, visit_param_bound, bounds);
1141            walk_list!(visitor, visit_generic_param, bound_generic_params);
1142        }
1143        WherePredicateKind::RegionPredicate(WhereRegionPredicate {
1144            ref lifetime,
1145            bounds,
1146            in_where_clause: _,
1147        }) => {
1148            try_visit!(visitor.visit_lifetime(lifetime));
1149            walk_list!(visitor, visit_param_bound, bounds);
1150        }
1151        WherePredicateKind::EqPredicate(WhereEqPredicate { ref lhs_ty, ref rhs_ty }) => {
1152            try_visit!(visitor.visit_ty_unambig(lhs_ty));
1153            try_visit!(visitor.visit_ty_unambig(rhs_ty));
1154        }
1155    }
1156    V::Result::output()
1157}
1158
1159pub fn walk_fn_decl<'v, V: Visitor<'v>>(
1160    visitor: &mut V,
1161    function_declaration: &'v FnDecl<'v>,
1162) -> V::Result {
1163    let FnDecl { inputs, output, c_variadic: _, implicit_self: _, lifetime_elision_allowed: _ } =
1164        function_declaration;
1165    walk_list!(visitor, visit_ty_unambig, *inputs);
1166    visitor.visit_fn_ret_ty(output)
1167}
1168
1169pub fn walk_fn_ret_ty<'v, V: Visitor<'v>>(visitor: &mut V, ret_ty: &'v FnRetTy<'v>) -> V::Result {
1170    if let FnRetTy::Return(output_ty) = *ret_ty {
1171        try_visit!(visitor.visit_ty_unambig(output_ty));
1172    }
1173    V::Result::output()
1174}
1175
1176pub fn walk_fn<'v, V: Visitor<'v>>(
1177    visitor: &mut V,
1178    function_kind: FnKind<'v>,
1179    function_declaration: &'v FnDecl<'v>,
1180    body_id: BodyId,
1181    _: LocalDefId,
1182) -> V::Result {
1183    try_visit!(visitor.visit_fn_decl(function_declaration));
1184    try_visit!(walk_fn_kind(visitor, function_kind));
1185    visitor.visit_nested_body(body_id)
1186}
1187
1188pub fn walk_fn_kind<'v, V: Visitor<'v>>(visitor: &mut V, function_kind: FnKind<'v>) -> V::Result {
1189    match function_kind {
1190        FnKind::ItemFn(_, generics, ..) => {
1191            try_visit!(visitor.visit_generics(generics));
1192        }
1193        FnKind::Closure | FnKind::Method(..) => {}
1194    }
1195    V::Result::output()
1196}
1197
1198pub fn walk_use<'v, V: Visitor<'v>>(
1199    visitor: &mut V,
1200    path: &'v UsePath<'v>,
1201    hir_id: HirId,
1202) -> V::Result {
1203    let UsePath { segments, ref res, span } = *path;
1204    for res in res.present_items() {
1205        try_visit!(visitor.visit_path(&Path { segments, res, span }, hir_id));
1206    }
1207    V::Result::output()
1208}
1209
1210pub fn walk_trait_item<'v, V: Visitor<'v>>(
1211    visitor: &mut V,
1212    trait_item: &'v TraitItem<'v>,
1213) -> V::Result {
1214    let TraitItem {
1215        ident,
1216        generics,
1217        ref defaultness,
1218        ref kind,
1219        span,
1220        owner_id: _,
1221        has_delayed_lints: _,
1222    } = *trait_item;
1223    let hir_id = trait_item.hir_id();
1224    try_visit!(visitor.visit_ident(ident));
1225    try_visit!(visitor.visit_generics(&generics));
1226    try_visit!(visitor.visit_defaultness(&defaultness));
1227    try_visit!(visitor.visit_id(hir_id));
1228    match *kind {
1229        TraitItemKind::Const(ref ty, default) => {
1230            try_visit!(visitor.visit_ty_unambig(ty));
1231            visit_opt!(visitor, visit_nested_body, default);
1232        }
1233        TraitItemKind::Fn(ref sig, TraitFn::Required(param_idents)) => {
1234            try_visit!(visitor.visit_fn_decl(sig.decl));
1235            for ident in param_idents.iter().copied() {
1236                visit_opt!(visitor, visit_ident, ident);
1237            }
1238        }
1239        TraitItemKind::Fn(ref sig, TraitFn::Provided(body_id)) => {
1240            try_visit!(visitor.visit_fn(
1241                FnKind::Method(ident, sig),
1242                sig.decl,
1243                body_id,
1244                span,
1245                trait_item.owner_id.def_id,
1246            ));
1247        }
1248        TraitItemKind::Type(bounds, ref default) => {
1249            walk_list!(visitor, visit_param_bound, bounds);
1250            visit_opt!(visitor, visit_ty_unambig, default);
1251        }
1252    }
1253    V::Result::output()
1254}
1255
1256pub fn walk_trait_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, id: TraitItemId) -> V::Result {
1257    visitor.visit_nested_trait_item(id)
1258}
1259
1260pub fn walk_impl_item<'v, V: Visitor<'v>>(
1261    visitor: &mut V,
1262    impl_item: &'v ImplItem<'v>,
1263) -> V::Result {
1264    let ImplItem {
1265        owner_id: _,
1266        ident,
1267        ref generics,
1268        ref kind,
1269        ref defaultness,
1270        span: _,
1271        vis_span: _,
1272        has_delayed_lints: _,
1273        trait_item_def_id: _,
1274    } = *impl_item;
1275
1276    try_visit!(visitor.visit_ident(ident));
1277    try_visit!(visitor.visit_generics(generics));
1278    try_visit!(visitor.visit_defaultness(defaultness));
1279    try_visit!(visitor.visit_id(impl_item.hir_id()));
1280    match *kind {
1281        ImplItemKind::Const(ref ty, body) => {
1282            try_visit!(visitor.visit_ty_unambig(ty));
1283            visitor.visit_nested_body(body)
1284        }
1285        ImplItemKind::Fn(ref sig, body_id) => visitor.visit_fn(
1286            FnKind::Method(impl_item.ident, sig),
1287            sig.decl,
1288            body_id,
1289            impl_item.span,
1290            impl_item.owner_id.def_id,
1291        ),
1292        ImplItemKind::Type(ref ty) => visitor.visit_ty_unambig(ty),
1293    }
1294}
1295
1296pub fn walk_foreign_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, id: ForeignItemId) -> V::Result {
1297    visitor.visit_nested_foreign_item(id)
1298}
1299
1300pub fn walk_impl_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, id: ImplItemId) -> V::Result {
1301    visitor.visit_nested_impl_item(id)
1302}
1303
1304pub fn walk_trait_ref<'v, V: Visitor<'v>>(
1305    visitor: &mut V,
1306    trait_ref: &'v TraitRef<'v>,
1307) -> V::Result {
1308    let TraitRef { hir_ref_id, path } = trait_ref;
1309    try_visit!(visitor.visit_id(*hir_ref_id));
1310    visitor.visit_path(*path, *hir_ref_id)
1311}
1312
1313pub fn walk_param_bound<'v, V: Visitor<'v>>(
1314    visitor: &mut V,
1315    bound: &'v GenericBound<'v>,
1316) -> V::Result {
1317    match *bound {
1318        GenericBound::Trait(ref typ) => visitor.visit_poly_trait_ref(typ),
1319        GenericBound::Outlives(ref lifetime) => visitor.visit_lifetime(lifetime),
1320        GenericBound::Use(args, _) => {
1321            walk_list!(visitor, visit_precise_capturing_arg, args);
1322            V::Result::output()
1323        }
1324    }
1325}
1326
1327pub fn walk_precise_capturing_arg<'v, V: Visitor<'v>>(
1328    visitor: &mut V,
1329    arg: &'v PreciseCapturingArg<'v>,
1330) -> V::Result {
1331    match *arg {
1332        PreciseCapturingArg::Lifetime(lt) => visitor.visit_lifetime(lt),
1333        PreciseCapturingArg::Param(param) => {
1334            let PreciseCapturingNonLifetimeArg { hir_id, ident, res: _ } = param;
1335            try_visit!(visitor.visit_id(hir_id));
1336            visitor.visit_ident(ident)
1337        }
1338    }
1339}
1340
1341pub fn walk_poly_trait_ref<'v, V: Visitor<'v>>(
1342    visitor: &mut V,
1343    trait_ref: &'v PolyTraitRef<'v>,
1344) -> V::Result {
1345    let PolyTraitRef { bound_generic_params, modifiers: _, trait_ref, span: _ } = trait_ref;
1346    walk_list!(visitor, visit_generic_param, *bound_generic_params);
1347    visitor.visit_trait_ref(trait_ref)
1348}
1349
1350pub fn walk_opaque_ty<'v, V: Visitor<'v>>(visitor: &mut V, opaque: &'v OpaqueTy<'v>) -> V::Result {
1351    let &OpaqueTy { hir_id, def_id: _, bounds, origin: _, span: _ } = opaque;
1352    try_visit!(visitor.visit_id(hir_id));
1353    walk_list!(visitor, visit_param_bound, bounds);
1354    V::Result::output()
1355}
1356
1357pub fn walk_struct_def<'v, V: Visitor<'v>>(
1358    visitor: &mut V,
1359    struct_definition: &'v VariantData<'v>,
1360) -> V::Result {
1361    visit_opt!(visitor, visit_id, struct_definition.ctor_hir_id());
1362    walk_list!(visitor, visit_field_def, struct_definition.fields());
1363    V::Result::output()
1364}
1365
1366pub fn walk_field_def<'v, V: Visitor<'v>>(
1367    visitor: &mut V,
1368    FieldDef { hir_id, ident, ty, default, span: _, vis_span: _, def_id: _, safety: _ }: &'v FieldDef<'v>,
1369) -> V::Result {
1370    try_visit!(visitor.visit_id(*hir_id));
1371    try_visit!(visitor.visit_ident(*ident));
1372    visit_opt!(visitor, visit_anon_const, default);
1373    visitor.visit_ty_unambig(*ty)
1374}
1375
1376pub fn walk_enum_def<'v, V: Visitor<'v>>(
1377    visitor: &mut V,
1378    enum_definition: &'v EnumDef<'v>,
1379) -> V::Result {
1380    let EnumDef { variants } = enum_definition;
1381    walk_list!(visitor, visit_variant, *variants);
1382    V::Result::output()
1383}
1384
1385pub fn walk_variant<'v, V: Visitor<'v>>(visitor: &mut V, variant: &'v Variant<'v>) -> V::Result {
1386    let Variant { ident, hir_id, def_id: _, data, disr_expr, span: _ } = variant;
1387    try_visit!(visitor.visit_ident(*ident));
1388    try_visit!(visitor.visit_id(*hir_id));
1389    try_visit!(visitor.visit_variant_data(data));
1390    visit_opt!(visitor, visit_anon_const, disr_expr);
1391    V::Result::output()
1392}
1393
1394pub fn walk_label<'v, V: Visitor<'v>>(visitor: &mut V, label: &'v Label) -> V::Result {
1395    let Label { ident } = label;
1396    visitor.visit_ident(*ident)
1397}
1398
1399pub fn walk_inf<'v, V: Visitor<'v>>(visitor: &mut V, inf: &'v InferArg) -> V::Result {
1400    let InferArg { hir_id, span: _ } = inf;
1401    visitor.visit_id(*hir_id)
1402}
1403
1404pub fn walk_lifetime<'v, V: Visitor<'v>>(visitor: &mut V, lifetime: &'v Lifetime) -> V::Result {
1405    let Lifetime { hir_id, ident, kind: _, source: _, syntax: _ } = lifetime;
1406    try_visit!(visitor.visit_id(*hir_id));
1407    visitor.visit_ident(*ident)
1408}
1409
1410pub fn walk_qpath<'v, V: Visitor<'v>>(
1411    visitor: &mut V,
1412    qpath: &'v QPath<'v>,
1413    id: HirId,
1414) -> V::Result {
1415    match *qpath {
1416        QPath::Resolved(ref maybe_qself, ref path) => {
1417            visit_opt!(visitor, visit_ty_unambig, maybe_qself);
1418            visitor.visit_path(path, id)
1419        }
1420        QPath::TypeRelative(ref qself, ref segment) => {
1421            try_visit!(visitor.visit_ty_unambig(qself));
1422            visitor.visit_path_segment(segment)
1423        }
1424        QPath::LangItem(..) => V::Result::output(),
1425    }
1426}
1427
1428pub fn walk_path<'v, V: Visitor<'v>>(visitor: &mut V, path: &Path<'v>) -> V::Result {
1429    let Path { segments, span: _, res: _ } = path;
1430    walk_list!(visitor, visit_path_segment, *segments);
1431    V::Result::output()
1432}
1433
1434pub fn walk_path_segment<'v, V: Visitor<'v>>(
1435    visitor: &mut V,
1436    segment: &'v PathSegment<'v>,
1437) -> V::Result {
1438    let PathSegment { ident, hir_id, res: _, args, infer_args: _ } = segment;
1439    try_visit!(visitor.visit_ident(*ident));
1440    try_visit!(visitor.visit_id(*hir_id));
1441    visit_opt!(visitor, visit_generic_args, *args);
1442    V::Result::output()
1443}
1444
1445pub fn walk_generic_args<'v, V: Visitor<'v>>(
1446    visitor: &mut V,
1447    generic_args: &'v GenericArgs<'v>,
1448) -> V::Result {
1449    let GenericArgs { args, constraints, parenthesized: _, span_ext: _ } = generic_args;
1450    walk_list!(visitor, visit_generic_arg, *args);
1451    walk_list!(visitor, visit_assoc_item_constraint, *constraints);
1452    V::Result::output()
1453}
1454
1455pub fn walk_assoc_item_constraint<'v, V: Visitor<'v>>(
1456    visitor: &mut V,
1457    constraint: &'v AssocItemConstraint<'v>,
1458) -> V::Result {
1459    let AssocItemConstraint { hir_id, ident, gen_args, kind: _, span: _ } = constraint;
1460    try_visit!(visitor.visit_id(*hir_id));
1461    try_visit!(visitor.visit_ident(*ident));
1462    try_visit!(visitor.visit_generic_args(*gen_args));
1463    match constraint.kind {
1464        AssocItemConstraintKind::Equality { ref term } => match term {
1465            Term::Ty(ty) => try_visit!(visitor.visit_ty_unambig(ty)),
1466            Term::Const(c) => try_visit!(visitor.visit_const_arg_unambig(c)),
1467        },
1468        AssocItemConstraintKind::Bound { bounds } => {
1469            walk_list!(visitor, visit_param_bound, bounds)
1470        }
1471    }
1472    V::Result::output()
1473}
1474
1475pub fn walk_defaultness<'v, V: Visitor<'v>>(_: &mut V, _: &'v Defaultness) -> V::Result {
1476    // No visitable content here: this fn exists so you can call it if
1477    // the right thing to do, should content be added in the future,
1478    // would be to walk it.
1479    V::Result::output()
1480}
1481
1482pub fn walk_inline_asm<'v, V: Visitor<'v>>(
1483    visitor: &mut V,
1484    asm: &'v InlineAsm<'v>,
1485    id: HirId,
1486) -> V::Result {
1487    for (op, op_sp) in asm.operands {
1488        match op {
1489            InlineAsmOperand::In { expr, .. } | InlineAsmOperand::InOut { expr, .. } => {
1490                try_visit!(visitor.visit_expr(expr));
1491            }
1492            InlineAsmOperand::Out { expr, .. } => {
1493                visit_opt!(visitor, visit_expr, expr);
1494            }
1495            InlineAsmOperand::SplitInOut { in_expr, out_expr, .. } => {
1496                try_visit!(visitor.visit_expr(in_expr));
1497                visit_opt!(visitor, visit_expr, out_expr);
1498            }
1499            InlineAsmOperand::Const { anon_const, .. } => {
1500                try_visit!(visitor.visit_inline_const(anon_const));
1501            }
1502            InlineAsmOperand::SymFn { expr, .. } => {
1503                try_visit!(visitor.visit_expr(expr));
1504            }
1505            InlineAsmOperand::SymStatic { path, .. } => {
1506                try_visit!(visitor.visit_qpath(path, id, *op_sp));
1507            }
1508            InlineAsmOperand::Label { block } => try_visit!(visitor.visit_block(block)),
1509        }
1510    }
1511    V::Result::output()
1512}