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    /// The [`Visitor::visit_infer`] method should be overridden in order to handle infer vars.
368    fn visit_ty(&mut self, t: &'v Ty<'v, AmbigArg>) -> Self::Result {
369        walk_ty(self, t)
370    }
371
372    fn visit_const_item_rhs(&mut self, c: ConstItemRhs<'v>) -> Self::Result {
373        walk_const_item_rhs(self, c)
374    }
375
376    /// All consts are treated as ambiguous consts for the purposes of hir visiting in
377    /// order to ensure that visitors can handle infer vars without it being too error-prone.
378    ///
379    /// The [`Visitor::visit_infer`] method should be overridden in order to handle infer vars.
380    fn visit_const_arg(&mut self, c: &'v ConstArg<'v, AmbigArg>) -> Self::Result {
381        walk_const_arg(self, c)
382    }
383
384    #[allow(unused_variables)]
385    fn visit_infer(&mut self, inf_id: HirId, inf_span: Span, kind: InferKind<'v>) -> Self::Result {
386        self.visit_id(inf_id)
387    }
388
389    fn visit_lifetime(&mut self, lifetime: &'v Lifetime) -> Self::Result {
390        walk_lifetime(self, lifetime)
391    }
392
393    fn visit_expr(&mut self, ex: &'v Expr<'v>) -> Self::Result {
394        walk_expr(self, ex)
395    }
396    fn visit_expr_field(&mut self, field: &'v ExprField<'v>) -> Self::Result {
397        walk_expr_field(self, field)
398    }
399    fn visit_pattern_type_pattern(&mut self, p: &'v TyPat<'v>) -> Self::Result {
400        walk_ty_pat(self, p)
401    }
402    fn visit_generic_param(&mut self, p: &'v GenericParam<'v>) -> Self::Result {
403        walk_generic_param(self, p)
404    }
405    fn visit_const_param_default(&mut self, _param: HirId, ct: &'v ConstArg<'v>) -> Self::Result {
406        walk_const_param_default(self, ct)
407    }
408    fn visit_generics(&mut self, g: &'v Generics<'v>) -> Self::Result {
409        walk_generics(self, g)
410    }
411    fn visit_where_predicate(&mut self, predicate: &'v WherePredicate<'v>) -> Self::Result {
412        walk_where_predicate(self, predicate)
413    }
414    fn visit_fn_ret_ty(&mut self, ret_ty: &'v FnRetTy<'v>) -> Self::Result {
415        walk_fn_ret_ty(self, ret_ty)
416    }
417    fn visit_fn_decl(&mut self, fd: &'v FnDecl<'v>) -> Self::Result {
418        walk_fn_decl(self, fd)
419    }
420    fn visit_fn(
421        &mut self,
422        fk: FnKind<'v>,
423        fd: &'v FnDecl<'v>,
424        b: BodyId,
425        _: Span,
426        id: LocalDefId,
427    ) -> Self::Result {
428        walk_fn(self, fk, fd, b, id)
429    }
430    fn visit_use(&mut self, path: &'v UsePath<'v>, hir_id: HirId) -> Self::Result {
431        walk_use(self, path, hir_id)
432    }
433    fn visit_trait_item(&mut self, ti: &'v TraitItem<'v>) -> Self::Result {
434        walk_trait_item(self, ti)
435    }
436    fn visit_trait_item_ref(&mut self, ii: &'v TraitItemId) -> Self::Result {
437        walk_trait_item_ref(self, *ii)
438    }
439    fn visit_impl_item(&mut self, ii: &'v ImplItem<'v>) -> Self::Result {
440        walk_impl_item(self, ii)
441    }
442    fn visit_foreign_item_ref(&mut self, ii: &'v ForeignItemId) -> Self::Result {
443        walk_foreign_item_ref(self, *ii)
444    }
445    fn visit_impl_item_ref(&mut self, ii: &'v ImplItemId) -> Self::Result {
446        walk_impl_item_ref(self, *ii)
447    }
448    fn visit_trait_ref(&mut self, t: &'v TraitRef<'v>) -> Self::Result {
449        walk_trait_ref(self, t)
450    }
451    fn visit_param_bound(&mut self, bounds: &'v GenericBound<'v>) -> Self::Result {
452        walk_param_bound(self, bounds)
453    }
454    fn visit_precise_capturing_arg(&mut self, arg: &'v PreciseCapturingArg<'v>) -> Self::Result {
455        walk_precise_capturing_arg(self, arg)
456    }
457    fn visit_poly_trait_ref(&mut self, t: &'v PolyTraitRef<'v>) -> Self::Result {
458        walk_poly_trait_ref(self, t)
459    }
460    fn visit_opaque_ty(&mut self, opaque: &'v OpaqueTy<'v>) -> Self::Result {
461        walk_opaque_ty(self, opaque)
462    }
463    fn visit_variant_data(&mut self, s: &'v VariantData<'v>) -> Self::Result {
464        walk_struct_def(self, s)
465    }
466    fn visit_field_def(&mut self, s: &'v FieldDef<'v>) -> Self::Result {
467        walk_field_def(self, s)
468    }
469    fn visit_enum_def(&mut self, enum_definition: &'v EnumDef<'v>) -> Self::Result {
470        walk_enum_def(self, enum_definition)
471    }
472    fn visit_variant(&mut self, v: &'v Variant<'v>) -> Self::Result {
473        walk_variant(self, v)
474    }
475    fn visit_label(&mut self, label: &'v Label) -> Self::Result {
476        walk_label(self, label)
477    }
478    // The span is that of the surrounding type/pattern/expr/whatever.
479    fn visit_qpath(&mut self, qpath: &'v QPath<'v>, id: HirId, _span: Span) -> Self::Result {
480        walk_qpath(self, qpath, id)
481    }
482    fn visit_path(&mut self, path: &Path<'v>, _id: HirId) -> Self::Result {
483        walk_path(self, path)
484    }
485    fn visit_path_segment(&mut self, path_segment: &'v PathSegment<'v>) -> Self::Result {
486        walk_path_segment(self, path_segment)
487    }
488    fn visit_generic_args(&mut self, generic_args: &'v GenericArgs<'v>) -> Self::Result {
489        walk_generic_args(self, generic_args)
490    }
491    fn visit_assoc_item_constraint(
492        &mut self,
493        constraint: &'v AssocItemConstraint<'v>,
494    ) -> Self::Result {
495        walk_assoc_item_constraint(self, constraint)
496    }
497    fn visit_attribute(&mut self, _attr: &'v Attribute) -> Self::Result {
498        Self::Result::output()
499    }
500    fn visit_defaultness(&mut self, defaultness: &'v Defaultness) -> Self::Result {
501        walk_defaultness(self, defaultness)
502    }
503    fn visit_inline_asm(&mut self, asm: &'v InlineAsm<'v>, id: HirId) -> Self::Result {
504        walk_inline_asm(self, asm, id)
505    }
506}
507
508pub trait VisitorExt<'v>: Visitor<'v> {
509    /// Extension trait method to visit types in unambiguous positions, this is not
510    /// directly on the [`Visitor`] trait as this method should never be overridden.
511    ///
512    /// Named `visit_ty_unambig` instead of `visit_unambig_ty` to aid in discovery
513    /// by IDes when `v.visit_ty` is written.
514    fn visit_ty_unambig(&mut self, t: &'v Ty<'v>) -> Self::Result {
515        walk_unambig_ty(self, t)
516    }
517    /// Extension trait method to visit consts in unambiguous positions, this is not
518    /// directly on the [`Visitor`] trait as this method should never be overridden.
519    ///
520    /// Named `visit_const_arg_unambig` instead of `visit_unambig_const_arg` to aid in
521    /// discovery by IDes when `v.visit_const_arg` is written.
522    fn visit_const_arg_unambig(&mut self, c: &'v ConstArg<'v>) -> Self::Result {
523        walk_unambig_const_arg(self, c)
524    }
525}
526impl<'v, V: Visitor<'v>> VisitorExt<'v> for V {}
527
528pub fn walk_param<'v, V: Visitor<'v>>(visitor: &mut V, param: &'v Param<'v>) -> V::Result {
529    let Param { hir_id, pat, ty_span: _, span: _ } = param;
530    try_visit!(visitor.visit_id(*hir_id));
531    visitor.visit_pat(pat)
532}
533
534pub fn walk_item<'v, V: Visitor<'v>>(visitor: &mut V, item: &'v Item<'v>) -> V::Result {
535    let Item { owner_id: _, kind, span: _, vis_span: _, has_delayed_lints: _ } = item;
536    try_visit!(visitor.visit_id(item.hir_id()));
537    match *kind {
538        ItemKind::ExternCrate(orig_name, ident) => {
539            visit_opt!(visitor, visit_name, orig_name);
540            try_visit!(visitor.visit_ident(ident));
541        }
542        ItemKind::Use(ref path, kind) => {
543            try_visit!(visitor.visit_use(path, item.hir_id()));
544            match kind {
545                UseKind::Single(ident) => try_visit!(visitor.visit_ident(ident)),
546                UseKind::Glob | UseKind::ListStem => {}
547            }
548        }
549        ItemKind::Static(_, ident, ref typ, body) => {
550            try_visit!(visitor.visit_ident(ident));
551            try_visit!(visitor.visit_ty_unambig(typ));
552            try_visit!(visitor.visit_nested_body(body));
553        }
554        ItemKind::Const(ident, ref generics, ref typ, rhs) => {
555            try_visit!(visitor.visit_ident(ident));
556            try_visit!(visitor.visit_generics(generics));
557            try_visit!(visitor.visit_ty_unambig(typ));
558            try_visit!(visitor.visit_const_item_rhs(rhs));
559        }
560        ItemKind::Fn { ident, sig, generics, body: body_id, .. } => {
561            try_visit!(visitor.visit_ident(ident));
562            try_visit!(visitor.visit_fn(
563                FnKind::ItemFn(ident, generics, sig.header),
564                sig.decl,
565                body_id,
566                item.span,
567                item.owner_id.def_id,
568            ));
569        }
570        ItemKind::Macro(ident, _def, _kind) => {
571            try_visit!(visitor.visit_ident(ident));
572        }
573        ItemKind::Mod(ident, ref module) => {
574            try_visit!(visitor.visit_ident(ident));
575            try_visit!(visitor.visit_mod(module, item.span, item.hir_id()));
576        }
577        ItemKind::ForeignMod { abi: _, items } => {
578            walk_list!(visitor, visit_foreign_item_ref, items);
579        }
580        ItemKind::GlobalAsm { asm: _, fake_body } => {
581            // Visit the fake body, which contains the asm statement.
582            // Therefore we should not visit the asm statement again
583            // outside of the body, or some visitors won't have their
584            // typeck results set correctly.
585            try_visit!(visitor.visit_nested_body(fake_body));
586        }
587        ItemKind::TyAlias(ident, ref generics, ref ty) => {
588            try_visit!(visitor.visit_ident(ident));
589            try_visit!(visitor.visit_generics(generics));
590            try_visit!(visitor.visit_ty_unambig(ty));
591        }
592        ItemKind::Enum(ident, ref generics, ref enum_definition) => {
593            try_visit!(visitor.visit_ident(ident));
594            try_visit!(visitor.visit_generics(generics));
595            try_visit!(visitor.visit_enum_def(enum_definition));
596        }
597        ItemKind::Impl(Impl { generics, of_trait, self_ty, items }) => {
598            try_visit!(visitor.visit_generics(generics));
599            if let Some(TraitImplHeader {
600                constness: _,
601                safety: _,
602                polarity: _,
603                defaultness: _,
604                defaultness_span: _,
605                trait_ref,
606            }) = of_trait
607            {
608                try_visit!(visitor.visit_trait_ref(trait_ref));
609            }
610            try_visit!(visitor.visit_ty_unambig(self_ty));
611            walk_list!(visitor, visit_impl_item_ref, items);
612        }
613        ItemKind::Struct(ident, ref generics, ref struct_definition)
614        | ItemKind::Union(ident, ref generics, ref struct_definition) => {
615            try_visit!(visitor.visit_ident(ident));
616            try_visit!(visitor.visit_generics(generics));
617            try_visit!(visitor.visit_variant_data(struct_definition));
618        }
619        ItemKind::Trait(
620            _constness,
621            _is_auto,
622            _safety,
623            ident,
624            ref generics,
625            bounds,
626            trait_item_refs,
627        ) => {
628            try_visit!(visitor.visit_ident(ident));
629            try_visit!(visitor.visit_generics(generics));
630            walk_list!(visitor, visit_param_bound, bounds);
631            walk_list!(visitor, visit_trait_item_ref, trait_item_refs);
632        }
633        ItemKind::TraitAlias(_constness, ident, ref generics, bounds) => {
634            try_visit!(visitor.visit_ident(ident));
635            try_visit!(visitor.visit_generics(generics));
636            walk_list!(visitor, visit_param_bound, bounds);
637        }
638    }
639    V::Result::output()
640}
641
642pub fn walk_body<'v, V: Visitor<'v>>(visitor: &mut V, body: &Body<'v>) -> V::Result {
643    let Body { params, value } = body;
644    walk_list!(visitor, visit_param, *params);
645    visitor.visit_expr(*value)
646}
647
648pub fn walk_ident<'v, V: Visitor<'v>>(visitor: &mut V, ident: Ident) -> V::Result {
649    visitor.visit_name(ident.name)
650}
651
652pub fn walk_mod<'v, V: Visitor<'v>>(visitor: &mut V, module: &'v Mod<'v>) -> V::Result {
653    let Mod { spans: _, item_ids } = module;
654    walk_list!(visitor, visit_nested_item, item_ids.iter().copied());
655    V::Result::output()
656}
657
658pub fn walk_foreign_item<'v, V: Visitor<'v>>(
659    visitor: &mut V,
660    foreign_item: &'v ForeignItem<'v>,
661) -> V::Result {
662    let ForeignItem { ident, kind, owner_id: _, span: _, vis_span: _, has_delayed_lints: _ } =
663        foreign_item;
664    try_visit!(visitor.visit_id(foreign_item.hir_id()));
665    try_visit!(visitor.visit_ident(*ident));
666
667    match *kind {
668        ForeignItemKind::Fn(ref sig, param_idents, ref generics) => {
669            try_visit!(visitor.visit_generics(generics));
670            try_visit!(visitor.visit_fn_decl(sig.decl));
671            for ident in param_idents.iter().copied() {
672                visit_opt!(visitor, visit_ident, ident);
673            }
674        }
675        ForeignItemKind::Static(ref typ, _, _) => {
676            try_visit!(visitor.visit_ty_unambig(typ));
677        }
678        ForeignItemKind::Type => (),
679    }
680    V::Result::output()
681}
682
683pub fn walk_local<'v, V: Visitor<'v>>(visitor: &mut V, local: &'v LetStmt<'v>) -> V::Result {
684    // Intentionally visiting the expr first - the initialization expr
685    // dominates the local's definition.
686    let LetStmt { super_: _, pat, ty, init, els, hir_id, span: _, source: _ } = local;
687    visit_opt!(visitor, visit_expr, *init);
688    try_visit!(visitor.visit_id(*hir_id));
689    try_visit!(visitor.visit_pat(*pat));
690    visit_opt!(visitor, visit_block, *els);
691    visit_opt!(visitor, visit_ty_unambig, *ty);
692    V::Result::output()
693}
694
695pub fn walk_block<'v, V: Visitor<'v>>(visitor: &mut V, block: &'v Block<'v>) -> V::Result {
696    let Block { stmts, expr, hir_id, rules: _, span: _, targeted_by_break: _ } = block;
697    try_visit!(visitor.visit_id(*hir_id));
698    walk_list!(visitor, visit_stmt, *stmts);
699    visit_opt!(visitor, visit_expr, *expr);
700    V::Result::output()
701}
702
703pub fn walk_stmt<'v, V: Visitor<'v>>(visitor: &mut V, statement: &'v Stmt<'v>) -> V::Result {
704    let Stmt { kind, hir_id, span: _ } = statement;
705    try_visit!(visitor.visit_id(*hir_id));
706    match *kind {
707        StmtKind::Let(ref local) => visitor.visit_local(local),
708        StmtKind::Item(item) => visitor.visit_nested_item(item),
709        StmtKind::Expr(ref expression) | StmtKind::Semi(ref expression) => {
710            visitor.visit_expr(expression)
711        }
712    }
713}
714
715pub fn walk_arm<'v, V: Visitor<'v>>(visitor: &mut V, arm: &'v Arm<'v>) -> V::Result {
716    let Arm { hir_id, span: _, pat, guard, body } = arm;
717    try_visit!(visitor.visit_id(*hir_id));
718    try_visit!(visitor.visit_pat(*pat));
719    visit_opt!(visitor, visit_expr, *guard);
720    visitor.visit_expr(*body)
721}
722
723pub fn walk_ty_pat<'v, V: Visitor<'v>>(visitor: &mut V, pattern: &'v TyPat<'v>) -> V::Result {
724    let TyPat { kind, hir_id, span: _ } = pattern;
725    try_visit!(visitor.visit_id(*hir_id));
726    match *kind {
727        TyPatKind::Range(lower_bound, upper_bound) => {
728            try_visit!(visitor.visit_const_arg_unambig(lower_bound));
729            try_visit!(visitor.visit_const_arg_unambig(upper_bound));
730        }
731        TyPatKind::Or(patterns) => walk_list!(visitor, visit_pattern_type_pattern, patterns),
732        TyPatKind::NotNull | TyPatKind::Err(_) => (),
733    }
734    V::Result::output()
735}
736
737pub fn walk_pat<'v, V: Visitor<'v>>(visitor: &mut V, pattern: &'v Pat<'v>) -> V::Result {
738    let Pat { hir_id, kind, span, default_binding_modes: _ } = pattern;
739    try_visit!(visitor.visit_id(*hir_id));
740    match *kind {
741        PatKind::TupleStruct(ref qpath, children, _) => {
742            try_visit!(visitor.visit_qpath(qpath, *hir_id, *span));
743            walk_list!(visitor, visit_pat, children);
744        }
745        PatKind::Struct(ref qpath, fields, _) => {
746            try_visit!(visitor.visit_qpath(qpath, *hir_id, *span));
747            walk_list!(visitor, visit_pat_field, fields);
748        }
749        PatKind::Or(pats) => walk_list!(visitor, visit_pat, pats),
750        PatKind::Tuple(tuple_elements, _) => {
751            walk_list!(visitor, visit_pat, tuple_elements);
752        }
753        PatKind::Box(ref subpattern)
754        | PatKind::Deref(ref subpattern)
755        | PatKind::Ref(ref subpattern, _, _) => {
756            try_visit!(visitor.visit_pat(subpattern));
757        }
758        PatKind::Binding(_, _hir_id, ident, ref optional_subpattern) => {
759            try_visit!(visitor.visit_ident(ident));
760            visit_opt!(visitor, visit_pat, optional_subpattern);
761        }
762        PatKind::Expr(ref expression) => try_visit!(visitor.visit_pat_expr(expression)),
763        PatKind::Range(ref lower_bound, ref upper_bound, _) => {
764            visit_opt!(visitor, visit_pat_expr, lower_bound);
765            visit_opt!(visitor, visit_pat_expr, upper_bound);
766        }
767        PatKind::Missing | PatKind::Never | PatKind::Wild | PatKind::Err(_) => (),
768        PatKind::Slice(prepatterns, ref slice_pattern, postpatterns) => {
769            walk_list!(visitor, visit_pat, prepatterns);
770            visit_opt!(visitor, visit_pat, slice_pattern);
771            walk_list!(visitor, visit_pat, postpatterns);
772        }
773        PatKind::Guard(subpat, condition) => {
774            try_visit!(visitor.visit_pat(subpat));
775            try_visit!(visitor.visit_expr(condition));
776        }
777    }
778    V::Result::output()
779}
780
781pub fn walk_pat_field<'v, V: Visitor<'v>>(visitor: &mut V, field: &'v PatField<'v>) -> V::Result {
782    let PatField { hir_id, ident, pat, is_shorthand: _, span: _ } = field;
783    try_visit!(visitor.visit_id(*hir_id));
784    try_visit!(visitor.visit_ident(*ident));
785    visitor.visit_pat(*pat)
786}
787
788pub fn walk_pat_expr<'v, V: Visitor<'v>>(visitor: &mut V, expr: &'v PatExpr<'v>) -> V::Result {
789    let PatExpr { hir_id, span, kind } = expr;
790    try_visit!(visitor.visit_id(*hir_id));
791    match kind {
792        PatExprKind::Lit { lit, negated } => visitor.visit_lit(*hir_id, *lit, *negated),
793        PatExprKind::ConstBlock(c) => visitor.visit_inline_const(c),
794        PatExprKind::Path(qpath) => visitor.visit_qpath(qpath, *hir_id, *span),
795    }
796}
797
798pub fn walk_anon_const<'v, V: Visitor<'v>>(visitor: &mut V, constant: &'v AnonConst) -> V::Result {
799    let AnonConst { hir_id, def_id: _, body, span: _ } = constant;
800    try_visit!(visitor.visit_id(*hir_id));
801    visitor.visit_nested_body(*body)
802}
803
804pub fn walk_inline_const<'v, V: Visitor<'v>>(
805    visitor: &mut V,
806    constant: &'v ConstBlock,
807) -> V::Result {
808    let ConstBlock { hir_id, def_id: _, body } = constant;
809    try_visit!(visitor.visit_id(*hir_id));
810    visitor.visit_nested_body(*body)
811}
812
813pub fn walk_expr<'v, V: Visitor<'v>>(visitor: &mut V, expression: &'v Expr<'v>) -> V::Result {
814    let Expr { hir_id, kind, span } = expression;
815    try_visit!(visitor.visit_id(*hir_id));
816    match *kind {
817        ExprKind::Array(subexpressions) => {
818            walk_list!(visitor, visit_expr, subexpressions);
819        }
820        ExprKind::ConstBlock(ref const_block) => {
821            try_visit!(visitor.visit_inline_const(const_block))
822        }
823        ExprKind::Repeat(ref element, ref count) => {
824            try_visit!(visitor.visit_expr(element));
825            try_visit!(visitor.visit_const_arg_unambig(count));
826        }
827        ExprKind::Struct(ref qpath, fields, ref optional_base) => {
828            try_visit!(visitor.visit_qpath(qpath, *hir_id, *span));
829            walk_list!(visitor, visit_expr_field, fields);
830            match optional_base {
831                StructTailExpr::Base(base) => try_visit!(visitor.visit_expr(base)),
832                StructTailExpr::None | StructTailExpr::DefaultFields(_) => {}
833            }
834        }
835        ExprKind::Tup(subexpressions) => {
836            walk_list!(visitor, visit_expr, subexpressions);
837        }
838        ExprKind::Call(ref callee_expression, arguments) => {
839            try_visit!(visitor.visit_expr(callee_expression));
840            walk_list!(visitor, visit_expr, arguments);
841        }
842        ExprKind::MethodCall(ref segment, receiver, arguments, _) => {
843            try_visit!(visitor.visit_path_segment(segment));
844            try_visit!(visitor.visit_expr(receiver));
845            walk_list!(visitor, visit_expr, arguments);
846        }
847        ExprKind::Use(expr, _) => {
848            try_visit!(visitor.visit_expr(expr));
849        }
850        ExprKind::Binary(_, ref left_expression, ref right_expression) => {
851            try_visit!(visitor.visit_expr(left_expression));
852            try_visit!(visitor.visit_expr(right_expression));
853        }
854        ExprKind::AddrOf(_, _, ref subexpression) | ExprKind::Unary(_, ref subexpression) => {
855            try_visit!(visitor.visit_expr(subexpression));
856        }
857        ExprKind::Cast(ref subexpression, ref typ) | ExprKind::Type(ref subexpression, ref typ) => {
858            try_visit!(visitor.visit_expr(subexpression));
859            try_visit!(visitor.visit_ty_unambig(typ));
860        }
861        ExprKind::DropTemps(ref subexpression) => {
862            try_visit!(visitor.visit_expr(subexpression));
863        }
864        ExprKind::Let(LetExpr { span: _, pat, ty, init, recovered: _ }) => {
865            // match the visit order in walk_local
866            try_visit!(visitor.visit_expr(init));
867            try_visit!(visitor.visit_pat(pat));
868            visit_opt!(visitor, visit_ty_unambig, ty);
869        }
870        ExprKind::If(ref cond, ref then, ref else_opt) => {
871            try_visit!(visitor.visit_expr(cond));
872            try_visit!(visitor.visit_expr(then));
873            visit_opt!(visitor, visit_expr, else_opt);
874        }
875        ExprKind::Loop(ref block, ref opt_label, _, _) => {
876            visit_opt!(visitor, visit_label, opt_label);
877            try_visit!(visitor.visit_block(block));
878        }
879        ExprKind::Match(ref subexpression, arms, _) => {
880            try_visit!(visitor.visit_expr(subexpression));
881            walk_list!(visitor, visit_arm, arms);
882        }
883        ExprKind::Closure(&Closure {
884            def_id,
885            binder: _,
886            bound_generic_params,
887            fn_decl,
888            body,
889            capture_clause: _,
890            fn_decl_span: _,
891            fn_arg_span: _,
892            kind: _,
893            constness: _,
894        }) => {
895            walk_list!(visitor, visit_generic_param, bound_generic_params);
896            try_visit!(visitor.visit_fn(FnKind::Closure, fn_decl, body, *span, def_id));
897        }
898        ExprKind::Block(ref block, ref opt_label) => {
899            visit_opt!(visitor, visit_label, opt_label);
900            try_visit!(visitor.visit_block(block));
901        }
902        ExprKind::Assign(ref lhs, ref rhs, _) => {
903            try_visit!(visitor.visit_expr(rhs));
904            try_visit!(visitor.visit_expr(lhs));
905        }
906        ExprKind::AssignOp(_, ref left_expression, ref right_expression) => {
907            try_visit!(visitor.visit_expr(right_expression));
908            try_visit!(visitor.visit_expr(left_expression));
909        }
910        ExprKind::Field(ref subexpression, ident) => {
911            try_visit!(visitor.visit_expr(subexpression));
912            try_visit!(visitor.visit_ident(ident));
913        }
914        ExprKind::Index(ref main_expression, ref index_expression, _) => {
915            try_visit!(visitor.visit_expr(main_expression));
916            try_visit!(visitor.visit_expr(index_expression));
917        }
918        ExprKind::Path(ref qpath) => {
919            try_visit!(visitor.visit_qpath(qpath, *hir_id, *span));
920        }
921        ExprKind::Break(ref destination, ref opt_expr) => {
922            visit_opt!(visitor, visit_label, &destination.label);
923            visit_opt!(visitor, visit_expr, opt_expr);
924        }
925        ExprKind::Continue(ref destination) => {
926            visit_opt!(visitor, visit_label, &destination.label);
927        }
928        ExprKind::Ret(ref optional_expression) => {
929            visit_opt!(visitor, visit_expr, optional_expression);
930        }
931        ExprKind::Become(ref expr) => try_visit!(visitor.visit_expr(expr)),
932        ExprKind::InlineAsm(ref asm) => {
933            try_visit!(visitor.visit_inline_asm(asm, *hir_id));
934        }
935        ExprKind::OffsetOf(ref container, ref fields) => {
936            try_visit!(visitor.visit_ty_unambig(container));
937            walk_list!(visitor, visit_ident, fields.iter().copied());
938        }
939        ExprKind::Yield(ref subexpression, _) => {
940            try_visit!(visitor.visit_expr(subexpression));
941        }
942        ExprKind::UnsafeBinderCast(_kind, expr, ty) => {
943            try_visit!(visitor.visit_expr(expr));
944            visit_opt!(visitor, visit_ty_unambig, ty);
945        }
946        ExprKind::Lit(lit) => try_visit!(visitor.visit_lit(*hir_id, lit, false)),
947        ExprKind::Err(_) => {}
948    }
949    V::Result::output()
950}
951
952pub fn walk_expr_field<'v, V: Visitor<'v>>(visitor: &mut V, field: &'v ExprField<'v>) -> V::Result {
953    let ExprField { hir_id, ident, expr, span: _, is_shorthand: _ } = field;
954    try_visit!(visitor.visit_id(*hir_id));
955    try_visit!(visitor.visit_ident(*ident));
956    visitor.visit_expr(*expr)
957}
958/// We track whether an infer var is from a [`Ty`], [`ConstArg`], or [`GenericArg`] so that
959/// HIR visitors overriding [`Visitor::visit_infer`] can determine what kind of infer is being visited
960pub enum InferKind<'hir> {
961    Ty(&'hir Ty<'hir>),
962    Const(&'hir ConstArg<'hir>),
963    Ambig(&'hir InferArg),
964}
965
966pub fn walk_generic_arg<'v, V: Visitor<'v>>(
967    visitor: &mut V,
968    generic_arg: &'v GenericArg<'v>,
969) -> V::Result {
970    match generic_arg {
971        GenericArg::Lifetime(lt) => visitor.visit_lifetime(lt),
972        GenericArg::Type(ty) => visitor.visit_ty(ty),
973        GenericArg::Const(ct) => visitor.visit_const_arg(ct),
974        GenericArg::Infer(inf) => {
975            let InferArg { hir_id, span } = inf;
976            visitor.visit_infer(*hir_id, *span, InferKind::Ambig(inf))
977        }
978    }
979}
980
981pub fn walk_unambig_ty<'v, V: Visitor<'v>>(visitor: &mut V, typ: &'v Ty<'v>) -> V::Result {
982    match typ.try_as_ambig_ty() {
983        Some(ambig_ty) => visitor.visit_ty(ambig_ty),
984        None => {
985            let Ty { hir_id, span, kind: _ } = typ;
986            visitor.visit_infer(*hir_id, *span, InferKind::Ty(typ))
987        }
988    }
989}
990
991pub fn walk_ty<'v, V: Visitor<'v>>(visitor: &mut V, typ: &'v Ty<'v, AmbigArg>) -> V::Result {
992    let Ty { hir_id, span: _, kind } = typ;
993    try_visit!(visitor.visit_id(*hir_id));
994
995    match *kind {
996        TyKind::Slice(ref ty) => try_visit!(visitor.visit_ty_unambig(ty)),
997        TyKind::Ptr(ref mutable_type) => try_visit!(visitor.visit_ty_unambig(mutable_type.ty)),
998        TyKind::Ref(ref lifetime, ref mutable_type) => {
999            try_visit!(visitor.visit_lifetime(lifetime));
1000            try_visit!(visitor.visit_ty_unambig(mutable_type.ty));
1001        }
1002        TyKind::Never => {}
1003        TyKind::Tup(tuple_element_types) => {
1004            walk_list!(visitor, visit_ty_unambig, tuple_element_types);
1005        }
1006        TyKind::FnPtr(ref function_declaration) => {
1007            walk_list!(visitor, visit_generic_param, function_declaration.generic_params);
1008            try_visit!(visitor.visit_fn_decl(function_declaration.decl));
1009        }
1010        TyKind::UnsafeBinder(ref unsafe_binder) => {
1011            walk_list!(visitor, visit_generic_param, unsafe_binder.generic_params);
1012            try_visit!(visitor.visit_ty_unambig(unsafe_binder.inner_ty));
1013        }
1014        TyKind::Path(ref qpath) => {
1015            try_visit!(visitor.visit_qpath(qpath, typ.hir_id, typ.span));
1016        }
1017        TyKind::OpaqueDef(opaque) => {
1018            try_visit!(visitor.visit_opaque_ty(opaque));
1019        }
1020        TyKind::TraitAscription(bounds) => {
1021            walk_list!(visitor, visit_param_bound, bounds);
1022        }
1023        TyKind::Array(ref ty, ref length) => {
1024            try_visit!(visitor.visit_ty_unambig(ty));
1025            try_visit!(visitor.visit_const_arg_unambig(length));
1026        }
1027        TyKind::TraitObject(bounds, ref lifetime) => {
1028            for bound in bounds {
1029                try_visit!(visitor.visit_poly_trait_ref(bound));
1030            }
1031            try_visit!(visitor.visit_lifetime(lifetime));
1032        }
1033        TyKind::Typeof(ref expression) => try_visit!(visitor.visit_anon_const(expression)),
1034        TyKind::InferDelegation(..) | TyKind::Err(_) => {}
1035        TyKind::Pat(ty, pat) => {
1036            try_visit!(visitor.visit_ty_unambig(ty));
1037            try_visit!(visitor.visit_pattern_type_pattern(pat));
1038        }
1039    }
1040    V::Result::output()
1041}
1042
1043pub fn walk_const_item_rhs<'v, V: Visitor<'v>>(
1044    visitor: &mut V,
1045    ct_rhs: ConstItemRhs<'v>,
1046) -> V::Result {
1047    match ct_rhs {
1048        ConstItemRhs::Body(body_id) => visitor.visit_nested_body(body_id),
1049        ConstItemRhs::TypeConst(const_arg) => visitor.visit_const_arg_unambig(const_arg),
1050    }
1051}
1052
1053pub fn walk_unambig_const_arg<'v, V: Visitor<'v>>(
1054    visitor: &mut V,
1055    const_arg: &'v ConstArg<'v>,
1056) -> V::Result {
1057    match const_arg.try_as_ambig_ct() {
1058        Some(ambig_ct) => visitor.visit_const_arg(ambig_ct),
1059        None => {
1060            let ConstArg { hir_id, kind: _ } = const_arg;
1061            visitor.visit_infer(*hir_id, const_arg.span(), InferKind::Const(const_arg))
1062        }
1063    }
1064}
1065
1066pub fn walk_const_arg<'v, V: Visitor<'v>>(
1067    visitor: &mut V,
1068    const_arg: &'v ConstArg<'v, AmbigArg>,
1069) -> V::Result {
1070    let ConstArg { hir_id, kind } = const_arg;
1071    try_visit!(visitor.visit_id(*hir_id));
1072    match kind {
1073        ConstArgKind::Path(qpath) => visitor.visit_qpath(qpath, *hir_id, qpath.span()),
1074        ConstArgKind::Anon(anon) => visitor.visit_anon_const(*anon),
1075        ConstArgKind::Error(_, _) => V::Result::output(), // errors and spans are not important
1076    }
1077}
1078
1079pub fn walk_generic_param<'v, V: Visitor<'v>>(
1080    visitor: &mut V,
1081    param: &'v GenericParam<'v>,
1082) -> V::Result {
1083    let GenericParam {
1084        hir_id,
1085        def_id: _,
1086        name,
1087        span: _,
1088        pure_wrt_drop: _,
1089        kind,
1090        colon_span: _,
1091        source: _,
1092    } = param;
1093    try_visit!(visitor.visit_id(*hir_id));
1094    match *name {
1095        ParamName::Plain(ident) | ParamName::Error(ident) => try_visit!(visitor.visit_ident(ident)),
1096        ParamName::Fresh => {}
1097    }
1098    match *kind {
1099        GenericParamKind::Lifetime { .. } => {}
1100        GenericParamKind::Type { ref default, .. } => {
1101            visit_opt!(visitor, visit_ty_unambig, default)
1102        }
1103        GenericParamKind::Const { ref ty, ref default } => {
1104            try_visit!(visitor.visit_ty_unambig(ty));
1105            if let Some(default) = default {
1106                try_visit!(visitor.visit_const_param_default(*hir_id, default));
1107            }
1108        }
1109    }
1110    V::Result::output()
1111}
1112
1113pub fn walk_const_param_default<'v, V: Visitor<'v>>(
1114    visitor: &mut V,
1115    ct: &'v ConstArg<'v>,
1116) -> V::Result {
1117    visitor.visit_const_arg_unambig(ct)
1118}
1119
1120pub fn walk_generics<'v, V: Visitor<'v>>(visitor: &mut V, generics: &'v Generics<'v>) -> V::Result {
1121    let &Generics {
1122        params,
1123        predicates,
1124        has_where_clause_predicates: _,
1125        where_clause_span: _,
1126        span: _,
1127    } = generics;
1128    walk_list!(visitor, visit_generic_param, params);
1129    walk_list!(visitor, visit_where_predicate, predicates);
1130    V::Result::output()
1131}
1132
1133pub fn walk_where_predicate<'v, V: Visitor<'v>>(
1134    visitor: &mut V,
1135    predicate: &'v WherePredicate<'v>,
1136) -> V::Result {
1137    let &WherePredicate { hir_id, kind, span: _ } = predicate;
1138    try_visit!(visitor.visit_id(hir_id));
1139    match *kind {
1140        WherePredicateKind::BoundPredicate(WhereBoundPredicate {
1141            ref bounded_ty,
1142            bounds,
1143            bound_generic_params,
1144            origin: _,
1145        }) => {
1146            try_visit!(visitor.visit_ty_unambig(bounded_ty));
1147            walk_list!(visitor, visit_param_bound, bounds);
1148            walk_list!(visitor, visit_generic_param, bound_generic_params);
1149        }
1150        WherePredicateKind::RegionPredicate(WhereRegionPredicate {
1151            ref lifetime,
1152            bounds,
1153            in_where_clause: _,
1154        }) => {
1155            try_visit!(visitor.visit_lifetime(lifetime));
1156            walk_list!(visitor, visit_param_bound, bounds);
1157        }
1158        WherePredicateKind::EqPredicate(WhereEqPredicate { ref lhs_ty, ref rhs_ty }) => {
1159            try_visit!(visitor.visit_ty_unambig(lhs_ty));
1160            try_visit!(visitor.visit_ty_unambig(rhs_ty));
1161        }
1162    }
1163    V::Result::output()
1164}
1165
1166pub fn walk_fn_decl<'v, V: Visitor<'v>>(
1167    visitor: &mut V,
1168    function_declaration: &'v FnDecl<'v>,
1169) -> V::Result {
1170    let FnDecl { inputs, output, c_variadic: _, implicit_self: _, lifetime_elision_allowed: _ } =
1171        function_declaration;
1172    walk_list!(visitor, visit_ty_unambig, *inputs);
1173    visitor.visit_fn_ret_ty(output)
1174}
1175
1176pub fn walk_fn_ret_ty<'v, V: Visitor<'v>>(visitor: &mut V, ret_ty: &'v FnRetTy<'v>) -> V::Result {
1177    if let FnRetTy::Return(output_ty) = *ret_ty {
1178        try_visit!(visitor.visit_ty_unambig(output_ty));
1179    }
1180    V::Result::output()
1181}
1182
1183pub fn walk_fn<'v, V: Visitor<'v>>(
1184    visitor: &mut V,
1185    function_kind: FnKind<'v>,
1186    function_declaration: &'v FnDecl<'v>,
1187    body_id: BodyId,
1188    _: LocalDefId,
1189) -> V::Result {
1190    try_visit!(visitor.visit_fn_decl(function_declaration));
1191    try_visit!(walk_fn_kind(visitor, function_kind));
1192    visitor.visit_nested_body(body_id)
1193}
1194
1195pub fn walk_fn_kind<'v, V: Visitor<'v>>(visitor: &mut V, function_kind: FnKind<'v>) -> V::Result {
1196    match function_kind {
1197        FnKind::ItemFn(_, generics, ..) => {
1198            try_visit!(visitor.visit_generics(generics));
1199        }
1200        FnKind::Closure | FnKind::Method(..) => {}
1201    }
1202    V::Result::output()
1203}
1204
1205pub fn walk_use<'v, V: Visitor<'v>>(
1206    visitor: &mut V,
1207    path: &'v UsePath<'v>,
1208    hir_id: HirId,
1209) -> V::Result {
1210    let UsePath { segments, ref res, span } = *path;
1211    for res in res.present_items() {
1212        try_visit!(visitor.visit_path(&Path { segments, res, span }, hir_id));
1213    }
1214    V::Result::output()
1215}
1216
1217pub fn walk_trait_item<'v, V: Visitor<'v>>(
1218    visitor: &mut V,
1219    trait_item: &'v TraitItem<'v>,
1220) -> V::Result {
1221    let TraitItem {
1222        ident,
1223        generics,
1224        ref defaultness,
1225        ref kind,
1226        span,
1227        owner_id: _,
1228        has_delayed_lints: _,
1229    } = *trait_item;
1230    let hir_id = trait_item.hir_id();
1231    try_visit!(visitor.visit_ident(ident));
1232    try_visit!(visitor.visit_generics(&generics));
1233    try_visit!(visitor.visit_defaultness(&defaultness));
1234    try_visit!(visitor.visit_id(hir_id));
1235    match *kind {
1236        TraitItemKind::Const(ref ty, default) => {
1237            try_visit!(visitor.visit_ty_unambig(ty));
1238            visit_opt!(visitor, visit_const_item_rhs, default);
1239        }
1240        TraitItemKind::Fn(ref sig, TraitFn::Required(param_idents)) => {
1241            try_visit!(visitor.visit_fn_decl(sig.decl));
1242            for ident in param_idents.iter().copied() {
1243                visit_opt!(visitor, visit_ident, ident);
1244            }
1245        }
1246        TraitItemKind::Fn(ref sig, TraitFn::Provided(body_id)) => {
1247            try_visit!(visitor.visit_fn(
1248                FnKind::Method(ident, sig),
1249                sig.decl,
1250                body_id,
1251                span,
1252                trait_item.owner_id.def_id,
1253            ));
1254        }
1255        TraitItemKind::Type(bounds, ref default) => {
1256            walk_list!(visitor, visit_param_bound, bounds);
1257            visit_opt!(visitor, visit_ty_unambig, default);
1258        }
1259    }
1260    V::Result::output()
1261}
1262
1263pub fn walk_trait_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, id: TraitItemId) -> V::Result {
1264    visitor.visit_nested_trait_item(id)
1265}
1266
1267pub fn walk_impl_item<'v, V: Visitor<'v>>(
1268    visitor: &mut V,
1269    impl_item: &'v ImplItem<'v>,
1270) -> V::Result {
1271    let ImplItem {
1272        owner_id: _,
1273        ident,
1274        ref generics,
1275        ref impl_kind,
1276        ref kind,
1277        span: _,
1278        has_delayed_lints: _,
1279    } = *impl_item;
1280
1281    try_visit!(visitor.visit_ident(ident));
1282    try_visit!(visitor.visit_generics(generics));
1283    try_visit!(visitor.visit_id(impl_item.hir_id()));
1284    match impl_kind {
1285        ImplItemImplKind::Inherent { vis_span: _ } => {}
1286        ImplItemImplKind::Trait { defaultness, trait_item_def_id: _ } => {
1287            try_visit!(visitor.visit_defaultness(defaultness));
1288        }
1289    }
1290    match *kind {
1291        ImplItemKind::Const(ref ty, rhs) => {
1292            try_visit!(visitor.visit_ty_unambig(ty));
1293            visitor.visit_const_item_rhs(rhs)
1294        }
1295        ImplItemKind::Fn(ref sig, body_id) => visitor.visit_fn(
1296            FnKind::Method(impl_item.ident, sig),
1297            sig.decl,
1298            body_id,
1299            impl_item.span,
1300            impl_item.owner_id.def_id,
1301        ),
1302        ImplItemKind::Type(ref ty) => visitor.visit_ty_unambig(ty),
1303    }
1304}
1305
1306pub fn walk_foreign_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, id: ForeignItemId) -> V::Result {
1307    visitor.visit_nested_foreign_item(id)
1308}
1309
1310pub fn walk_impl_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, id: ImplItemId) -> V::Result {
1311    visitor.visit_nested_impl_item(id)
1312}
1313
1314pub fn walk_trait_ref<'v, V: Visitor<'v>>(
1315    visitor: &mut V,
1316    trait_ref: &'v TraitRef<'v>,
1317) -> V::Result {
1318    let TraitRef { hir_ref_id, path } = trait_ref;
1319    try_visit!(visitor.visit_id(*hir_ref_id));
1320    visitor.visit_path(*path, *hir_ref_id)
1321}
1322
1323pub fn walk_param_bound<'v, V: Visitor<'v>>(
1324    visitor: &mut V,
1325    bound: &'v GenericBound<'v>,
1326) -> V::Result {
1327    match *bound {
1328        GenericBound::Trait(ref typ) => visitor.visit_poly_trait_ref(typ),
1329        GenericBound::Outlives(ref lifetime) => visitor.visit_lifetime(lifetime),
1330        GenericBound::Use(args, _) => {
1331            walk_list!(visitor, visit_precise_capturing_arg, args);
1332            V::Result::output()
1333        }
1334    }
1335}
1336
1337pub fn walk_precise_capturing_arg<'v, V: Visitor<'v>>(
1338    visitor: &mut V,
1339    arg: &'v PreciseCapturingArg<'v>,
1340) -> V::Result {
1341    match *arg {
1342        PreciseCapturingArg::Lifetime(lt) => visitor.visit_lifetime(lt),
1343        PreciseCapturingArg::Param(param) => {
1344            let PreciseCapturingNonLifetimeArg { hir_id, ident, res: _ } = param;
1345            try_visit!(visitor.visit_id(hir_id));
1346            visitor.visit_ident(ident)
1347        }
1348    }
1349}
1350
1351pub fn walk_poly_trait_ref<'v, V: Visitor<'v>>(
1352    visitor: &mut V,
1353    trait_ref: &'v PolyTraitRef<'v>,
1354) -> V::Result {
1355    let PolyTraitRef { bound_generic_params, modifiers: _, trait_ref, span: _ } = trait_ref;
1356    walk_list!(visitor, visit_generic_param, *bound_generic_params);
1357    visitor.visit_trait_ref(trait_ref)
1358}
1359
1360pub fn walk_opaque_ty<'v, V: Visitor<'v>>(visitor: &mut V, opaque: &'v OpaqueTy<'v>) -> V::Result {
1361    let &OpaqueTy { hir_id, def_id: _, bounds, origin: _, span: _ } = opaque;
1362    try_visit!(visitor.visit_id(hir_id));
1363    walk_list!(visitor, visit_param_bound, bounds);
1364    V::Result::output()
1365}
1366
1367pub fn walk_struct_def<'v, V: Visitor<'v>>(
1368    visitor: &mut V,
1369    struct_definition: &'v VariantData<'v>,
1370) -> V::Result {
1371    visit_opt!(visitor, visit_id, struct_definition.ctor_hir_id());
1372    walk_list!(visitor, visit_field_def, struct_definition.fields());
1373    V::Result::output()
1374}
1375
1376pub fn walk_field_def<'v, V: Visitor<'v>>(
1377    visitor: &mut V,
1378    FieldDef { hir_id, ident, ty, default, span: _, vis_span: _, def_id: _, safety: _ }: &'v FieldDef<'v>,
1379) -> V::Result {
1380    try_visit!(visitor.visit_id(*hir_id));
1381    try_visit!(visitor.visit_ident(*ident));
1382    visit_opt!(visitor, visit_anon_const, default);
1383    visitor.visit_ty_unambig(*ty)
1384}
1385
1386pub fn walk_enum_def<'v, V: Visitor<'v>>(
1387    visitor: &mut V,
1388    enum_definition: &'v EnumDef<'v>,
1389) -> V::Result {
1390    let EnumDef { variants } = enum_definition;
1391    walk_list!(visitor, visit_variant, *variants);
1392    V::Result::output()
1393}
1394
1395pub fn walk_variant<'v, V: Visitor<'v>>(visitor: &mut V, variant: &'v Variant<'v>) -> V::Result {
1396    let Variant { ident, hir_id, def_id: _, data, disr_expr, span: _ } = variant;
1397    try_visit!(visitor.visit_ident(*ident));
1398    try_visit!(visitor.visit_id(*hir_id));
1399    try_visit!(visitor.visit_variant_data(data));
1400    visit_opt!(visitor, visit_anon_const, disr_expr);
1401    V::Result::output()
1402}
1403
1404pub fn walk_label<'v, V: Visitor<'v>>(visitor: &mut V, label: &'v Label) -> V::Result {
1405    let Label { ident } = label;
1406    visitor.visit_ident(*ident)
1407}
1408
1409pub fn walk_inf<'v, V: Visitor<'v>>(visitor: &mut V, inf: &'v InferArg) -> V::Result {
1410    let InferArg { hir_id, span: _ } = inf;
1411    visitor.visit_id(*hir_id)
1412}
1413
1414pub fn walk_lifetime<'v, V: Visitor<'v>>(visitor: &mut V, lifetime: &'v Lifetime) -> V::Result {
1415    let Lifetime { hir_id, ident, kind: _, source: _, syntax: _ } = lifetime;
1416    try_visit!(visitor.visit_id(*hir_id));
1417    visitor.visit_ident(*ident)
1418}
1419
1420pub fn walk_qpath<'v, V: Visitor<'v>>(
1421    visitor: &mut V,
1422    qpath: &'v QPath<'v>,
1423    id: HirId,
1424) -> V::Result {
1425    match *qpath {
1426        QPath::Resolved(ref maybe_qself, ref path) => {
1427            visit_opt!(visitor, visit_ty_unambig, maybe_qself);
1428            visitor.visit_path(path, id)
1429        }
1430        QPath::TypeRelative(ref qself, ref segment) => {
1431            try_visit!(visitor.visit_ty_unambig(qself));
1432            visitor.visit_path_segment(segment)
1433        }
1434    }
1435}
1436
1437pub fn walk_path<'v, V: Visitor<'v>>(visitor: &mut V, path: &Path<'v>) -> V::Result {
1438    let Path { segments, span: _, res: _ } = path;
1439    walk_list!(visitor, visit_path_segment, *segments);
1440    V::Result::output()
1441}
1442
1443pub fn walk_path_segment<'v, V: Visitor<'v>>(
1444    visitor: &mut V,
1445    segment: &'v PathSegment<'v>,
1446) -> V::Result {
1447    let PathSegment { ident, hir_id, res: _, args, infer_args: _ } = segment;
1448    try_visit!(visitor.visit_ident(*ident));
1449    try_visit!(visitor.visit_id(*hir_id));
1450    visit_opt!(visitor, visit_generic_args, *args);
1451    V::Result::output()
1452}
1453
1454pub fn walk_generic_args<'v, V: Visitor<'v>>(
1455    visitor: &mut V,
1456    generic_args: &'v GenericArgs<'v>,
1457) -> V::Result {
1458    let GenericArgs { args, constraints, parenthesized: _, span_ext: _ } = generic_args;
1459    walk_list!(visitor, visit_generic_arg, *args);
1460    walk_list!(visitor, visit_assoc_item_constraint, *constraints);
1461    V::Result::output()
1462}
1463
1464pub fn walk_assoc_item_constraint<'v, V: Visitor<'v>>(
1465    visitor: &mut V,
1466    constraint: &'v AssocItemConstraint<'v>,
1467) -> V::Result {
1468    let AssocItemConstraint { hir_id, ident, gen_args, kind: _, span: _ } = constraint;
1469    try_visit!(visitor.visit_id(*hir_id));
1470    try_visit!(visitor.visit_ident(*ident));
1471    try_visit!(visitor.visit_generic_args(*gen_args));
1472    match constraint.kind {
1473        AssocItemConstraintKind::Equality { ref term } => match term {
1474            Term::Ty(ty) => try_visit!(visitor.visit_ty_unambig(ty)),
1475            Term::Const(c) => try_visit!(visitor.visit_const_arg_unambig(c)),
1476        },
1477        AssocItemConstraintKind::Bound { bounds } => {
1478            walk_list!(visitor, visit_param_bound, bounds)
1479        }
1480    }
1481    V::Result::output()
1482}
1483
1484pub fn walk_defaultness<'v, V: Visitor<'v>>(_: &mut V, _: &'v Defaultness) -> V::Result {
1485    // No visitable content here: this fn exists so you can call it if
1486    // the right thing to do, should content be added in the future,
1487    // would be to walk it.
1488    V::Result::output()
1489}
1490
1491pub fn walk_inline_asm<'v, V: Visitor<'v>>(
1492    visitor: &mut V,
1493    asm: &'v InlineAsm<'v>,
1494    id: HirId,
1495) -> V::Result {
1496    for (op, op_sp) in asm.operands {
1497        match op {
1498            InlineAsmOperand::In { expr, .. } | InlineAsmOperand::InOut { expr, .. } => {
1499                try_visit!(visitor.visit_expr(expr));
1500            }
1501            InlineAsmOperand::Out { expr, .. } => {
1502                visit_opt!(visitor, visit_expr, expr);
1503            }
1504            InlineAsmOperand::SplitInOut { in_expr, out_expr, .. } => {
1505                try_visit!(visitor.visit_expr(in_expr));
1506                visit_opt!(visitor, visit_expr, out_expr);
1507            }
1508            InlineAsmOperand::Const { anon_const, .. } => {
1509                try_visit!(visitor.visit_inline_const(anon_const));
1510            }
1511            InlineAsmOperand::SymFn { expr, .. } => {
1512                try_visit!(visitor.visit_expr(expr));
1513            }
1514            InlineAsmOperand::SymStatic { path, .. } => {
1515                try_visit!(visitor.visit_qpath(path, id, *op_sp));
1516            }
1517            InlineAsmOperand::Label { block } => try_visit!(visitor.visit_block(block)),
1518        }
1519    }
1520    V::Result::output()
1521}