rust/compiler/rustc_hir/src/intravisit.rs

1221 lines
44 KiB
Rust
Raw Normal View History

//! HIR walker for walking the contents of nodes.
//!
//! **For an overview of the visitor strategy, see the docs on the
//! `super::itemlikevisit::ItemLikeVisitor` trait.**
//!
//! If you have decided to use this visitor, here are some general
2019-02-08 07:53:55 -06:00
//! notes on how to do so:
//!
//! Each overridden visit method has full control over what
2015-07-31 02:04:06 -05:00
//! happens with its node, it can do its own traversal of the node's children,
//! call `intravisit::walk_*` to apply the default traversal algorithm, or prevent
2015-07-31 02:04:06 -05:00
//! deeper traversal by doing nothing.
//!
//! When visiting the HIR, the contents of nested items are NOT visited
//! by default. This is different from the AST visitor, which does a deep walk.
//! Hence this module is called `intravisit`; see the method `visit_nested_item`
//! for more details.
2015-07-31 02:04:06 -05:00
//!
//! Note: it is an important invariant that the default visitor walks
//! the body of a function in "execution order" - more concretely, if
//! we consider the reverse post-order (RPO) of the CFG implied by the HIR,
//! then a pre-order traversal of the HIR is consistent with the CFG RPO
//! on the *initial CFG point* of each HIR node, while a post-order traversal
//! of the HIR is consistent with the CFG RPO on each *final CFG point* of
//! each CFG node.
//!
//! One thing that follows is that if HIR node A always starts/ends executing
//! before HIR node B, then A appears in traversal pre/postorder before B,
//! respectively. (This follows from RPO respecting CFG domination).
//!
//! This order consistency is required in a few places in rustc, for
//! example generator inference, and possibly also HIR borrowck.
2015-07-31 02:04:06 -05:00
2020-01-07 10:30:29 -06:00
use crate::hir::*;
use crate::hir_id::CRATE_HIR_ID;
use crate::itemlikevisit::{ItemLikeVisitor, ParItemLikeVisitor};
use rustc_ast::walk_list;
2020-04-27 12:56:11 -05:00
use rustc_ast::{Attribute, Label};
2020-04-19 06:00:18 -05:00
use rustc_span::symbol::{Ident, Symbol};
use rustc_span::Span;
2015-07-31 02:04:06 -05:00
2020-01-01 21:18:51 -06:00
pub struct DeepVisitor<'v, V> {
visitor: &'v mut V,
}
2020-01-07 10:25:33 -06:00
impl<'v, V> DeepVisitor<'v, V> {
2020-01-01 21:18:51 -06:00
pub fn new(base: &'v mut V) -> Self {
DeepVisitor { visitor: base }
}
}
impl<'v, 'hir, V> ItemLikeVisitor<'hir> for DeepVisitor<'v, V>
where
V: Visitor<'hir>,
{
fn visit_item(&mut self, item: &'hir Item<'hir>) {
self.visitor.visit_item(item);
}
fn visit_trait_item(&mut self, trait_item: &'hir TraitItem<'hir>) {
self.visitor.visit_trait_item(trait_item);
}
fn visit_impl_item(&mut self, impl_item: &'hir ImplItem<'hir>) {
self.visitor.visit_impl_item(impl_item);
}
}
pub trait IntoVisitor<'hir> {
type Visitor: Visitor<'hir>;
fn into_visitor(&self) -> Self::Visitor;
}
pub struct ParDeepVisitor<V>(pub V);
impl<'hir, V> ParItemLikeVisitor<'hir> for ParDeepVisitor<V>
where
V: IntoVisitor<'hir>,
{
fn visit_item(&self, item: &'hir Item<'hir>) {
self.0.into_visitor().visit_item(item);
}
fn visit_trait_item(&self, trait_item: &'hir TraitItem<'hir>) {
self.0.into_visitor().visit_trait_item(trait_item);
}
fn visit_impl_item(&self, impl_item: &'hir ImplItem<'hir>) {
self.0.into_visitor().visit_impl_item(impl_item);
}
}
#[derive(Copy, Clone)]
2015-07-31 02:04:06 -05:00
pub enum FnKind<'a> {
2019-01-03 13:28:20 -06:00
/// `#[xxx] pub async/const/extern "Abi" fn foo()`
2019-11-30 10:46:46 -06:00
ItemFn(Ident, &'a Generics<'a>, FnHeader, &'a Visibility<'a>, &'a [Attribute]),
2015-07-31 02:04:06 -05:00
2019-01-03 13:28:20 -06:00
/// `fn foo(&self)`
2019-11-30 10:46:46 -06:00
Method(Ident, &'a FnSig<'a>, Option<&'a Visibility<'a>>, &'a [Attribute]),
2015-07-31 02:04:06 -05:00
2019-01-03 13:28:20 -06:00
/// `|x, y| {}`
Closure(&'a [Attribute]),
}
impl<'a> FnKind<'a> {
pub fn attrs(&self) -> &'a [Attribute] {
match *self {
2016-08-26 11:23:42 -05:00
FnKind::ItemFn(.., attrs) => attrs,
FnKind::Method(.., attrs) => attrs,
FnKind::Closure(attrs) => attrs,
}
}
2019-04-18 12:44:55 -05:00
pub fn header(&self) -> Option<&FnHeader> {
2019-04-18 12:44:55 -05:00
match *self {
FnKind::ItemFn(_, _, ref header, _, _) => Some(header),
FnKind::Method(_, ref sig, _, _) => Some(&sig.header),
2019-04-18 12:44:55 -05:00
FnKind::Closure(_) => None,
}
}
2015-07-31 02:04:06 -05:00
}
2020-03-29 09:41:09 -05:00
/// An abstract representation of the HIR `rustc_middle::hir::map::Map`.
2020-01-07 10:25:33 -06:00
pub trait Map<'hir> {
/// Retrieves the `Node` corresponding to `id`, returning `None` if cannot be found.
fn find(&self, hir_id: HirId) -> Option<Node<'hir>>;
2020-01-07 10:25:33 -06:00
fn body(&self, id: BodyId) -> &'hir Body<'hir>;
fn item(&self, id: HirId) -> &'hir Item<'hir>;
fn trait_item(&self, id: TraitItemId) -> &'hir TraitItem<'hir>;
fn impl_item(&self, id: ImplItemId) -> &'hir ImplItem<'hir>;
}
2020-03-11 06:05:32 -05:00
/// An erased version of `Map<'hir>`, using dynamic dispatch.
/// NOTE: This type is effectively only usable with `NestedVisitorMap::None`.
pub struct ErasedMap<'hir>(&'hir dyn Map<'hir>);
impl<'hir> Map<'hir> for ErasedMap<'hir> {
fn find(&self, _: HirId) -> Option<Node<'hir>> {
None
}
2020-03-11 06:05:32 -05:00
fn body(&self, id: BodyId) -> &'hir Body<'hir> {
self.0.body(id)
}
fn item(&self, id: HirId) -> &'hir Item<'hir> {
self.0.item(id)
}
fn trait_item(&self, id: TraitItemId) -> &'hir TraitItem<'hir> {
self.0.trait_item(id)
}
fn impl_item(&self, id: ImplItemId) -> &'hir ImplItem<'hir> {
self.0.impl_item(id)
}
}
2016-11-28 13:51:19 -06:00
/// Specifies what nested things a visitor wants to visit. The most
/// common choice is `OnlyBodies`, which will cause the visitor to
/// visit fn bodies for fns that it encounters, but skip over nested
/// item-like things.
///
/// See the comments on `ItemLikeVisitor` for more details on the overall
/// visit strategy.
2020-02-09 08:32:00 -06:00
pub enum NestedVisitorMap<M> {
/// Do not visit any nested things. When you add a new
/// "non-nested" thing, you will want to audit such uses to see if
/// they remain valid.
2016-11-28 13:51:19 -06:00
///
/// Use this if you are only walking some particular kind of tree
/// (i.e., a type, or fn signature) and you don't want to thread a
/// HIR map around.
None,
/// Do not visit nested item-like things, but visit nested things
/// that are inside of an item-like.
///
2017-08-11 13:34:14 -05:00
/// **This is the most common choice.** A very common pattern is
/// to use `visit_all_item_likes()` as an outer loop,
2016-11-28 13:51:19 -06:00
/// and to have the visitor that visits the contents of each item
/// using this setting.
2020-02-09 08:32:00 -06:00
OnlyBodies(M),
2019-02-08 07:53:55 -06:00
/// Visits all nested things, including item-likes.
2016-11-28 13:51:19 -06:00
///
/// **This is an unusual choice.** It is used when you want to
/// process everything within their lexical context. Typically you
/// kick off the visit by doing `walk_krate()`.
2020-02-09 08:32:00 -06:00
All(M),
}
2020-02-09 08:32:00 -06:00
impl<M> NestedVisitorMap<M> {
/// Returns the map to use for an "intra item-like" thing (if any).
2019-02-08 07:53:55 -06:00
/// E.g., function body.
2020-02-09 08:32:00 -06:00
fn intra(self) -> Option<M> {
match self {
NestedVisitorMap::None => None,
NestedVisitorMap::OnlyBodies(map) => Some(map),
NestedVisitorMap::All(map) => Some(map),
}
}
/// Returns the map to use for an "item-like" thing (if any).
2019-02-08 07:53:55 -06:00
/// E.g., item, impl-item.
2020-02-09 08:32:00 -06:00
fn inter(self) -> Option<M> {
match self {
NestedVisitorMap::None => None,
NestedVisitorMap::OnlyBodies(_) => None,
NestedVisitorMap::All(map) => Some(map),
}
}
2016-10-28 15:58:32 -05:00
}
2015-07-31 02:04:06 -05:00
/// Each method of the Visitor trait is a hook to be potentially
2019-02-08 07:53:55 -06:00
/// overridden. Each method's default implementation recursively visits
2015-07-31 02:04:06 -05:00
/// the substructure of the input via the corresponding `walk` method;
/// e.g., the `visit_mod` method by default calls `intravisit::walk_mod`.
2015-07-31 02:04:06 -05:00
///
/// Note that this visitor does NOT visit nested items by default
/// (this is why the module is called `intravisit`, to distinguish it
/// from the AST's `visit` module, which acts differently). If you
/// simply want to visit all items in the crate in some order, you
/// should call `Crate::visit_all_items`. Otherwise, see the comment
/// on `visit_nested_item` for details on how to visit nested items.
///
2015-07-31 02:04:06 -05:00
/// If you want to ensure that your code handles every variant
2019-02-08 07:53:55 -06:00
/// explicitly, you need to override each method. (And you also need
2015-07-31 02:04:06 -05:00
/// to monitor future changes to `Visitor` in case a new method with a
/// new default implementation gets introduced.)
pub trait Visitor<'v>: Sized {
2020-01-07 10:25:33 -06:00
type Map: Map<'v>;
///////////////////////////////////////////////////////////////////////////
// Nested items.
2016-11-28 13:51:19 -06:00
/// The default versions of the `visit_nested_XXX` routines invoke
/// this method to get a map to use. By selecting an enum variant,
/// you control which kinds of nested HIR are visited; see
/// `NestedVisitorMap` for details. By "nested HIR", we are
/// referring to bits of HIR that are not directly embedded within
/// one another but rather indirectly, through a table in the
/// crate. This is done to control dependencies during incremental
/// compilation: the non-inline bits of HIR can be tracked and
/// hashed separately.
///
/// **If for some reason you want the nested behavior, but don't
2017-01-24 03:35:19 -06:00
/// have a `Map` at your disposal:** then you should override the
/// `visit_nested_XXX` methods, and override this method to
/// `panic!()`. This way, if a new `visit_nested_XXX` variant is
/// added in the future, we will see the panic in your code and
/// fix it appropriately.
2020-02-09 08:32:00 -06:00
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map>;
/// Invoked when a nested item is encountered. By default does
/// nothing unless you override `nested_visit_map` to return other than
/// `None`, in which case it will walk the item. **You probably
/// don't want to override this method** -- instead, override
/// `nested_visit_map` or use the "shallow" or "deep" visit
/// patterns described on `itemlikevisit::ItemLikeVisitor`. The only
/// reason to override this method is if you want a nested pattern
/// but cannot supply a `Map`; see `nested_visit_map` for advice.
fn visit_nested_item(&mut self, id: ItemId) {
2020-01-07 08:51:38 -06:00
let opt_item = self.nested_visit_map().inter().map(|map| map.item(id.id));
2020-01-07 10:38:38 -06:00
walk_list!(self, visit_item, opt_item);
}
/// Like `visit_nested_item()`, but for trait items. See
/// `visit_nested_item()` for advice on when to override this
/// method.
fn visit_nested_trait_item(&mut self, id: TraitItemId) {
let opt_item = self.nested_visit_map().inter().map(|map| map.trait_item(id));
2020-01-07 10:38:38 -06:00
walk_list!(self, visit_trait_item, opt_item);
}
/// Like `visit_nested_item()`, but for impl items. See
/// `visit_nested_item()` for advice on when to override this
/// method.
fn visit_nested_impl_item(&mut self, id: ImplItemId) {
let opt_item = self.nested_visit_map().inter().map(|map| map.impl_item(id));
2020-01-07 10:38:38 -06:00
walk_list!(self, visit_impl_item, opt_item);
}
2016-10-28 15:58:32 -05:00
/// Invoked to visit the body of a function, method or closure. Like
/// visit_nested_item, does nothing by default unless you override
2019-10-10 20:36:01 -05:00
/// `nested_visit_map` to return other than `None`, in which case it will walk
/// the body.
fn visit_nested_body(&mut self, id: BodyId) {
let opt_body = self.nested_visit_map().intra().map(|map| map.body(id));
2020-01-07 10:38:38 -06:00
walk_list!(self, visit_body, opt_body);
2016-10-28 15:58:32 -05:00
}
2019-11-29 06:43:03 -06:00
fn visit_param(&mut self, param: &'v Param<'v>) {
walk_param(self, param)
2019-07-26 17:52:37 -05:00
}
2019-02-08 07:53:55 -06:00
/// Visits the top-level item and (optionally) nested items / impl items. See
/// `visit_nested_item` for details.
2019-11-28 12:28:50 -06:00
fn visit_item(&mut self, i: &'v Item<'v>) {
walk_item(self, i)
}
2019-11-29 04:09:23 -06:00
fn visit_body(&mut self, b: &'v Body<'v>) {
walk_body(self, b);
}
/// When invoking `visit_all_item_likes()`, you need to supply an
2019-02-08 07:53:55 -06:00
/// item-like visitor. This method converts a "intra-visit"
/// visitor into an item-like visitor that walks the entire tree.
/// If you use this, you probably don't want to process the
/// contents of nested item-like things, since the outer loop will
/// visit them as well.
fn as_deep_visitor(&mut self) -> DeepVisitor<'_, Self> {
DeepVisitor::new(self)
}
///////////////////////////////////////////////////////////////////////////
2019-02-06 07:16:11 -06:00
fn visit_id(&mut self, _hir_id: HirId) {
// Nothing to do.
}
2020-04-19 06:00:18 -05:00
fn visit_name(&mut self, _span: Span, _name: Symbol) {
2015-07-31 02:04:06 -05:00
// Nothing to do.
}
2018-05-25 18:50:15 -05:00
fn visit_ident(&mut self, ident: Ident) {
walk_ident(self, ident)
}
2019-11-29 03:24:47 -06:00
fn visit_mod(&mut self, m: &'v Mod<'v>, _s: Span, n: HirId) {
walk_mod(self, m, n)
2015-09-27 14:23:31 -05:00
}
2019-11-28 13:18:29 -06:00
fn visit_foreign_item(&mut self, i: &'v ForeignItem<'v>) {
2015-09-27 14:23:31 -05:00
walk_foreign_item(self, i)
}
2019-11-29 06:43:03 -06:00
fn visit_local(&mut self, l: &'v Local<'v>) {
2015-09-27 14:23:31 -05:00
walk_local(self, l)
}
2019-11-29 06:43:03 -06:00
fn visit_block(&mut self, b: &'v Block<'v>) {
2015-09-27 14:23:31 -05:00
walk_block(self, b)
}
2019-11-29 06:43:03 -06:00
fn visit_stmt(&mut self, s: &'v Stmt<'v>) {
2015-09-27 14:23:31 -05:00
walk_stmt(self, s)
}
2019-11-29 06:43:03 -06:00
fn visit_arm(&mut self, a: &'v Arm<'v>) {
2015-09-27 14:23:31 -05:00
walk_arm(self, a)
}
2019-11-29 06:43:03 -06:00
fn visit_pat(&mut self, p: &'v Pat<'v>) {
2015-09-27 14:23:31 -05:00
walk_pat(self, p)
}
fn visit_anon_const(&mut self, c: &'v AnonConst) {
walk_anon_const(self, c)
}
2019-11-29 06:43:03 -06:00
fn visit_expr(&mut self, ex: &'v Expr<'v>) {
2015-09-27 14:23:31 -05:00
walk_expr(self, ex)
}
2019-11-30 10:46:46 -06:00
fn visit_ty(&mut self, t: &'v Ty<'v>) {
2015-09-27 14:23:31 -05:00
walk_ty(self, t)
}
2019-11-30 10:46:46 -06:00
fn visit_generic_param(&mut self, p: &'v GenericParam<'v>) {
walk_generic_param(self, p)
}
2019-11-30 10:46:46 -06:00
fn visit_generics(&mut self, g: &'v Generics<'v>) {
2015-09-27 14:23:31 -05:00
walk_generics(self, g)
}
2019-11-30 10:46:46 -06:00
fn visit_where_predicate(&mut self, predicate: &'v WherePredicate<'v>) {
walk_where_predicate(self, predicate)
}
2019-11-30 10:46:46 -06:00
fn visit_fn_decl(&mut self, fd: &'v FnDecl<'v>) {
walk_fn_decl(self, fd)
}
2019-11-30 10:46:46 -06:00
fn visit_fn(&mut self, fk: FnKind<'v>, fd: &'v FnDecl<'v>, b: BodyId, s: Span, id: HirId) {
walk_fn(self, fk, fd, b, s, id)
2015-07-31 02:04:06 -05:00
}
2019-11-30 10:46:46 -06:00
fn visit_use(&mut self, path: &'v Path<'v>, hir_id: HirId) {
2019-02-06 07:16:11 -06:00
walk_use(self, path, hir_id)
}
2019-11-28 14:47:10 -06:00
fn visit_trait_item(&mut self, ti: &'v TraitItem<'v>) {
2015-09-27 14:23:31 -05:00
walk_trait_item(self, ti)
}
fn visit_trait_item_ref(&mut self, ii: &'v TraitItemRef) {
walk_trait_item_ref(self, ii)
}
2019-11-28 15:16:44 -06:00
fn visit_impl_item(&mut self, ii: &'v ImplItem<'v>) {
2015-09-27 14:23:31 -05:00
walk_impl_item(self, ii)
}
2019-11-30 10:46:46 -06:00
fn visit_impl_item_ref(&mut self, ii: &'v ImplItemRef<'v>) {
walk_impl_item_ref(self, ii)
}
2019-11-30 10:46:46 -06:00
fn visit_trait_ref(&mut self, t: &'v TraitRef<'v>) {
2015-09-27 14:23:31 -05:00
walk_trait_ref(self, t)
}
2019-11-30 10:46:46 -06:00
fn visit_param_bound(&mut self, bounds: &'v GenericBound<'v>) {
walk_param_bound(self, bounds)
2015-07-31 02:04:06 -05:00
}
2019-11-30 10:46:46 -06:00
fn visit_poly_trait_ref(&mut self, t: &'v PolyTraitRef<'v>, m: TraitBoundModifier) {
2015-07-31 02:04:06 -05:00
walk_poly_trait_ref(self, t, m)
}
2019-12-22 16:42:04 -06:00
fn visit_variant_data(
&mut self,
s: &'v VariantData<'v>,
2020-04-19 06:00:18 -05:00
_: Symbol,
2019-11-30 10:46:46 -06:00
_: &'v Generics<'v>,
2019-12-22 16:42:04 -06:00
_parent_id: HirId,
_: Span,
) {
2015-07-31 02:04:06 -05:00
walk_struct_def(self, s)
}
2019-11-29 02:40:33 -06:00
fn visit_struct_field(&mut self, s: &'v StructField<'v>) {
2015-09-27 14:23:31 -05:00
walk_struct_field(self, s)
}
2019-12-22 16:42:04 -06:00
fn visit_enum_def(
&mut self,
enum_definition: &'v EnumDef<'v>,
2019-11-30 10:46:46 -06:00
generics: &'v Generics<'v>,
2019-12-22 16:42:04 -06:00
item_id: HirId,
_: Span,
) {
walk_enum_def(self, enum_definition, generics, item_id)
2015-07-31 02:04:06 -05:00
}
2019-11-30 10:46:46 -06:00
fn visit_variant(&mut self, v: &'v Variant<'v>, g: &'v Generics<'v>, item_id: HirId) {
walk_variant(self, v, g, item_id)
2015-09-27 14:23:31 -05:00
}
fn visit_label(&mut self, label: &'v Label) {
walk_label(self, label)
}
2019-11-30 10:46:46 -06:00
fn visit_generic_arg(&mut self, generic_arg: &'v GenericArg<'v>) {
match generic_arg {
GenericArg::Lifetime(lt) => self.visit_lifetime(lt),
GenericArg::Type(ty) => self.visit_ty(ty),
GenericArg::Const(ct) => self.visit_anon_const(&ct.value),
2018-02-25 07:46:45 -06:00
}
}
fn visit_lifetime(&mut self, lifetime: &'v Lifetime) {
walk_lifetime(self, lifetime)
2015-07-31 02:04:06 -05:00
}
2019-11-30 10:46:46 -06:00
fn visit_qpath(&mut self, qpath: &'v QPath<'v>, id: HirId, span: Span) {
walk_qpath(self, qpath, id, span)
}
2019-11-30 10:46:46 -06:00
fn visit_path(&mut self, path: &'v Path<'v>, _id: HirId) {
2015-07-31 02:04:06 -05:00
walk_path(self, path)
}
2019-11-30 10:46:46 -06:00
fn visit_path_segment(&mut self, path_span: Span, path_segment: &'v PathSegment<'v>) {
2015-07-31 02:04:06 -05:00
walk_path_segment(self, path_span, path_segment)
}
2019-11-30 10:46:46 -06:00
fn visit_generic_args(&mut self, path_span: Span, generic_args: &'v GenericArgs<'v>) {
walk_generic_args(self, path_span, generic_args)
2015-07-31 02:04:06 -05:00
}
2019-11-30 10:46:46 -06:00
fn visit_assoc_type_binding(&mut self, type_binding: &'v TypeBinding<'v>) {
2015-07-31 02:04:06 -05:00
walk_assoc_type_binding(self, type_binding)
}
2019-12-22 16:42:04 -06:00
fn visit_attribute(&mut self, _attr: &'v Attribute) {}
2019-11-28 16:50:47 -06:00
fn visit_macro_def(&mut self, macro_def: &'v MacroDef<'v>) {
walk_macro_def(self, macro_def)
}
2019-11-30 10:46:46 -06:00
fn visit_vis(&mut self, vis: &'v Visibility<'v>) {
walk_vis(self, vis)
}
fn visit_associated_item_kind(&mut self, kind: &'v AssocItemKind) {
walk_associated_item_kind(self, kind);
}
fn visit_defaultness(&mut self, defaultness: &'v Defaultness) {
walk_defaultness(self, defaultness);
}
}
/// Walks the contents of a crate. See also `Crate::visit_all_items`.
2019-11-28 04:49:29 -06:00
pub fn walk_crate<'v, V: Visitor<'v>>(visitor: &mut V, krate: &'v Crate<'v>) {
2020-02-07 09:43:36 -06:00
visitor.visit_mod(&krate.item.module, krate.item.span, CRATE_HIR_ID);
walk_list!(visitor, visit_attribute, krate.item.attrs);
2019-11-28 04:49:29 -06:00
walk_list!(visitor, visit_macro_def, krate.exported_macros);
2015-07-31 02:04:06 -05:00
}
2019-11-28 16:50:47 -06:00
pub fn walk_macro_def<'v, V: Visitor<'v>>(visitor: &mut V, macro_def: &'v MacroDef<'v>) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(macro_def.hir_id);
visitor.visit_ident(macro_def.ident);
2019-11-28 16:50:47 -06:00
walk_list!(visitor, visit_attribute, macro_def.attrs);
2015-07-31 02:04:06 -05:00
}
2019-11-29 03:24:47 -06:00
pub fn walk_mod<'v, V: Visitor<'v>>(visitor: &mut V, module: &'v Mod<'v>, mod_hir_id: HirId) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(mod_hir_id);
2019-11-29 03:24:47 -06:00
for &item_id in module.item_ids {
visitor.visit_nested_item(item_id);
}
2015-07-31 02:04:06 -05:00
}
2019-11-29 04:09:23 -06:00
pub fn walk_body<'v, V: Visitor<'v>>(visitor: &mut V, body: &'v Body<'v>) {
walk_list!(visitor, visit_param, body.params);
visitor.visit_expr(&body.value);
}
2019-11-29 06:43:03 -06:00
pub fn walk_local<'v, V: Visitor<'v>>(visitor: &mut V, local: &'v Local<'v>) {
2017-09-20 08:36:20 -05:00
// Intentionally visiting the expr first - the initialization expr
// dominates the local's definition.
walk_list!(visitor, visit_expr, &local.init);
walk_list!(visitor, visit_attribute, local.attrs.iter());
2019-02-06 07:16:11 -06:00
visitor.visit_id(local.hir_id);
visitor.visit_pat(&local.pat);
walk_list!(visitor, visit_ty, &local.ty);
2015-07-31 02:04:06 -05:00
}
2018-05-25 18:50:15 -05:00
pub fn walk_ident<'v, V: Visitor<'v>>(visitor: &mut V, ident: Ident) {
visitor.visit_name(ident.span, ident.name);
}
pub fn walk_label<'v, V: Visitor<'v>>(visitor: &mut V, label: &'v Label) {
visitor.visit_ident(label.ident);
}
pub fn walk_lifetime<'v, V: Visitor<'v>>(visitor: &mut V, lifetime: &'v Lifetime) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(lifetime.hir_id);
2017-09-19 18:36:54 -05:00
match lifetime.name {
2018-06-09 15:25:33 -05:00
LifetimeName::Param(ParamName::Plain(ident)) => {
visitor.visit_ident(ident);
2017-09-19 18:36:54 -05:00
}
2019-12-22 16:42:04 -06:00
LifetimeName::Param(ParamName::Fresh(_))
| LifetimeName::Param(ParamName::Error)
| LifetimeName::Static
| LifetimeName::Error
| LifetimeName::Implicit
| LifetimeName::ImplicitObjectLifetimeDefault
| LifetimeName::Underscore => {}
2017-09-19 18:36:54 -05:00
}
2015-07-31 02:04:06 -05:00
}
2020-01-07 10:25:33 -06:00
pub fn walk_poly_trait_ref<'v, V: Visitor<'v>>(
2019-12-22 16:42:04 -06:00
visitor: &mut V,
2019-11-30 10:46:46 -06:00
trait_ref: &'v PolyTraitRef<'v>,
2019-12-22 16:42:04 -06:00
_modifier: TraitBoundModifier,
2020-01-07 10:25:33 -06:00
) {
2019-11-30 17:17:43 -06:00
walk_list!(visitor, visit_generic_param, trait_ref.bound_generic_params);
2015-07-31 02:04:06 -05:00
visitor.visit_trait_ref(&trait_ref.trait_ref);
}
2020-01-07 10:25:33 -06:00
pub fn walk_trait_ref<'v, V: Visitor<'v>>(visitor: &mut V, trait_ref: &'v TraitRef<'v>) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(trait_ref.hir_ref_id);
visitor.visit_path(&trait_ref.path, trait_ref.hir_ref_id)
2015-07-31 02:04:06 -05:00
}
2019-11-29 06:43:03 -06:00
pub fn walk_param<'v, V: Visitor<'v>>(visitor: &mut V, param: &'v Param<'v>) {
visitor.visit_id(param.hir_id);
visitor.visit_pat(&param.pat);
2019-11-29 07:08:03 -06:00
walk_list!(visitor, visit_attribute, param.attrs);
2019-07-26 17:52:37 -05:00
}
2019-11-28 12:28:50 -06:00
pub fn walk_item<'v, V: Visitor<'v>>(visitor: &mut V, item: &'v Item<'v>) {
visitor.visit_vis(&item.vis);
visitor.visit_ident(item.ident);
2019-09-26 11:51:36 -05:00
match item.kind {
2018-07-11 10:36:06 -05:00
ItemKind::ExternCrate(orig_name) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(item.hir_id);
if let Some(orig_name) = orig_name {
visitor.visit_name(item.span, orig_name);
}
}
2018-07-11 10:36:06 -05:00
ItemKind::Use(ref path, _) => {
2019-02-06 07:16:11 -06:00
visitor.visit_use(path, item.hir_id);
2015-07-31 02:04:06 -05:00
}
2019-12-22 16:42:04 -06:00
ItemKind::Static(ref typ, _, body) | ItemKind::Const(ref typ, body) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(item.hir_id);
visitor.visit_ty(typ);
visitor.visit_nested_body(body);
2015-07-31 02:04:06 -05:00
}
2019-12-22 16:42:04 -06:00
ItemKind::Fn(ref sig, ref generics, body_id) => visitor.visit_fn(
FnKind::ItemFn(item.ident, generics, sig.header, &item.vis, &item.attrs),
&sig.decl,
body_id,
item.span,
item.hir_id,
),
2018-07-11 10:36:06 -05:00
ItemKind::Mod(ref module) => {
2019-02-06 07:16:11 -06:00
// `visit_mod()` takes care of visiting the `Item`'s `HirId`.
visitor.visit_mod(module, item.span, item.hir_id)
2015-07-31 02:04:06 -05:00
}
2018-07-11 10:36:06 -05:00
ItemKind::ForeignMod(ref foreign_module) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(item.hir_id);
2019-11-28 13:18:29 -06:00
walk_list!(visitor, visit_foreign_item, foreign_module.items);
2015-07-31 02:04:06 -05:00
}
2018-07-11 10:36:06 -05:00
ItemKind::GlobalAsm(_) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(item.hir_id);
}
ItemKind::TyAlias(ref ty, ref generics) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(item.hir_id);
visitor.visit_ty(ty);
visitor.visit_generics(generics)
2015-07-31 02:04:06 -05:00
}
2019-11-30 17:17:43 -06:00
ItemKind::OpaqueTy(OpaqueTy { ref generics, bounds, .. }) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(item.hir_id);
2018-05-22 07:31:56 -05:00
walk_generics(visitor, generics);
walk_list!(visitor, visit_param_bound, bounds);
2018-05-22 07:31:56 -05:00
}
ItemKind::Enum(ref enum_definition, ref generics) => {
visitor.visit_generics(generics);
2019-02-06 07:16:11 -06:00
// `visit_enum_def()` takes care of visiting the `Item`'s `HirId`.
visitor.visit_enum_def(enum_definition, generics, item.hir_id, item.span)
2015-07-31 02:04:06 -05:00
}
ItemKind::Impl {
unsafety: _,
defaultness: _,
polarity: _,
constness: _,
defaultness_span: _,
ref generics,
ref of_trait,
ref self_ty,
items,
} => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(item.hir_id);
visitor.visit_generics(generics);
walk_list!(visitor, visit_trait_ref, of_trait);
visitor.visit_ty(self_ty);
walk_list!(visitor, visit_impl_item_ref, items);
2015-07-31 02:04:06 -05:00
}
2019-12-22 16:42:04 -06:00
ItemKind::Struct(ref struct_definition, ref generics)
| ItemKind::Union(ref struct_definition, ref generics) => {
2015-07-31 02:04:06 -05:00
visitor.visit_generics(generics);
2019-02-06 07:16:11 -06:00
visitor.visit_id(item.hir_id);
2019-12-22 16:42:04 -06:00
visitor.visit_variant_data(
struct_definition,
item.ident.name,
generics,
item.hir_id,
item.span,
);
2015-07-31 02:04:06 -05:00
}
2019-11-30 17:17:43 -06:00
ItemKind::Trait(.., ref generics, bounds, trait_item_refs) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(item.hir_id);
2015-07-31 02:04:06 -05:00
visitor.visit_generics(generics);
walk_list!(visitor, visit_param_bound, bounds);
walk_list!(visitor, visit_trait_item_ref, trait_item_refs);
2015-07-31 02:04:06 -05:00
}
2019-11-30 17:17:43 -06:00
ItemKind::TraitAlias(ref generics, bounds) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(item.hir_id);
2017-10-02 07:28:16 -05:00
visitor.visit_generics(generics);
walk_list!(visitor, visit_param_bound, bounds);
2017-10-02 07:28:16 -05:00
}
2015-07-31 02:04:06 -05:00
}
2019-11-28 16:50:47 -06:00
walk_list!(visitor, visit_attribute, item.attrs);
2015-07-31 02:04:06 -05:00
}
2019-11-30 10:46:46 -06:00
pub fn walk_use<'v, V: Visitor<'v>>(visitor: &mut V, path: &'v Path<'v>, hir_id: HirId) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(hir_id);
visitor.visit_path(path, hir_id);
}
2019-12-22 16:42:04 -06:00
pub fn walk_enum_def<'v, V: Visitor<'v>>(
visitor: &mut V,
enum_definition: &'v EnumDef<'v>,
2019-11-30 10:46:46 -06:00
generics: &'v Generics<'v>,
2019-12-22 16:42:04 -06:00
item_id: HirId,
) {
visitor.visit_id(item_id);
2019-12-22 16:42:04 -06:00
walk_list!(visitor, visit_variant, enum_definition.variants, generics, item_id);
2015-07-31 02:04:06 -05:00
}
2019-12-22 16:42:04 -06:00
pub fn walk_variant<'v, V: Visitor<'v>>(
visitor: &mut V,
variant: &'v Variant<'v>,
2019-11-30 10:46:46 -06:00
generics: &'v Generics<'v>,
2019-12-22 16:42:04 -06:00
parent_item_id: HirId,
) {
2019-08-13 19:40:21 -05:00
visitor.visit_ident(variant.ident);
visitor.visit_id(variant.id);
2019-12-22 16:42:04 -06:00
visitor.visit_variant_data(
&variant.data,
variant.ident.name,
generics,
parent_item_id,
variant.span,
);
2019-08-13 19:40:21 -05:00
walk_list!(visitor, visit_anon_const, &variant.disr_expr);
2019-11-29 02:26:18 -06:00
walk_list!(visitor, visit_attribute, variant.attrs);
2015-07-31 02:04:06 -05:00
}
2019-11-30 10:46:46 -06:00
pub fn walk_ty<'v, V: Visitor<'v>>(visitor: &mut V, typ: &'v Ty<'v>) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(typ.hir_id);
2019-09-26 11:25:31 -05:00
match typ.kind {
2019-12-22 16:42:04 -06:00
TyKind::Slice(ref ty) => visitor.visit_ty(ty),
TyKind::Ptr(ref mutable_type) => visitor.visit_ty(&mutable_type.ty),
2018-07-11 09:41:03 -05:00
TyKind::Rptr(ref lifetime, ref mutable_type) => {
visitor.visit_lifetime(lifetime);
visitor.visit_ty(&mutable_type.ty)
2015-07-31 02:04:06 -05:00
}
TyKind::Never => {}
2019-11-30 17:17:43 -06:00
TyKind::Tup(tuple_element_types) => {
walk_list!(visitor, visit_ty, tuple_element_types);
2015-07-31 02:04:06 -05:00
}
2018-07-11 09:41:03 -05:00
TyKind::BareFn(ref function_declaration) => {
2019-11-30 17:17:43 -06:00
walk_list!(visitor, visit_generic_param, function_declaration.generic_params);
visitor.visit_fn_decl(&function_declaration.decl);
2015-07-31 02:04:06 -05:00
}
2018-07-11 09:41:03 -05:00
TyKind::Path(ref qpath) => {
visitor.visit_qpath(qpath, typ.hir_id, typ.span);
2015-07-31 02:04:06 -05:00
}
2020-06-07 12:56:17 -05:00
TyKind::OpaqueDef(item_id, lifetimes) => {
visitor.visit_nested_item(item_id);
walk_list!(visitor, visit_generic_arg, lifetimes);
}
2018-07-11 09:41:03 -05:00
TyKind::Array(ref ty, ref length) => {
visitor.visit_ty(ty);
visitor.visit_anon_const(length)
2015-07-31 02:04:06 -05:00
}
2019-11-30 17:17:43 -06:00
TyKind::TraitObject(bounds, ref lifetime) => {
for bound in bounds {
visitor.visit_poly_trait_ref(bound, TraitBoundModifier::None);
}
visitor.visit_lifetime(lifetime);
2015-07-31 02:04:06 -05:00
}
2019-12-22 16:42:04 -06:00
TyKind::Typeof(ref expression) => visitor.visit_anon_const(expression),
2018-07-11 09:41:03 -05:00
TyKind::Infer | TyKind::Err => {}
2015-07-31 02:04:06 -05:00
}
}
2019-11-30 10:46:46 -06:00
pub fn walk_qpath<'v, V: Visitor<'v>>(
visitor: &mut V,
qpath: &'v QPath<'v>,
id: HirId,
span: Span,
) {
match *qpath {
QPath::Resolved(ref maybe_qself, ref path) => {
2020-01-07 10:38:38 -06:00
walk_list!(visitor, visit_ty, maybe_qself);
visitor.visit_path(path, id)
}
QPath::TypeRelative(ref qself, ref segment) => {
visitor.visit_ty(qself);
visitor.visit_path_segment(span, segment);
}
QPath::LangItem(..) => {}
}
}
2019-11-30 10:46:46 -06:00
pub fn walk_path<'v, V: Visitor<'v>>(visitor: &mut V, path: &'v Path<'v>) {
2019-11-30 17:17:43 -06:00
for segment in path.segments {
2015-07-31 02:04:06 -05:00
visitor.visit_path_segment(path.span, segment);
}
}
2019-12-22 16:42:04 -06:00
pub fn walk_path_segment<'v, V: Visitor<'v>>(
visitor: &mut V,
path_span: Span,
2019-11-30 10:46:46 -06:00
segment: &'v PathSegment<'v>,
2019-12-22 16:42:04 -06:00
) {
2018-06-10 09:40:45 -05:00
visitor.visit_ident(segment.ident);
2020-01-07 10:38:38 -06:00
walk_list!(visitor, visit_id, segment.hir_id);
2018-02-23 11:48:54 -06:00
if let Some(ref args) = segment.args {
visitor.visit_generic_args(path_span, args);
}
2015-07-31 02:04:06 -05:00
}
2019-12-22 16:42:04 -06:00
pub fn walk_generic_args<'v, V: Visitor<'v>>(
visitor: &mut V,
_path_span: Span,
2019-11-30 10:46:46 -06:00
generic_args: &'v GenericArgs<'v>,
2019-12-22 16:42:04 -06:00
) {
2019-12-01 10:10:12 -06:00
walk_list!(visitor, visit_generic_arg, generic_args.args);
2019-11-30 17:17:43 -06:00
walk_list!(visitor, visit_assoc_type_binding, generic_args.bindings);
2015-07-31 02:04:06 -05:00
}
2019-11-30 10:46:46 -06:00
pub fn walk_assoc_type_binding<'v, V: Visitor<'v>>(
visitor: &mut V,
type_binding: &'v TypeBinding<'v>,
) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(type_binding.hir_id);
visitor.visit_ident(type_binding.ident);
2019-05-08 14:57:06 -05:00
match type_binding.kind {
TypeBindingKind::Equality { ref ty } => {
visitor.visit_ty(ty);
}
2019-11-30 17:17:43 -06:00
TypeBindingKind::Constraint { bounds } => {
2019-05-08 14:57:06 -05:00
walk_list!(visitor, visit_param_bound, bounds);
}
}
2015-07-31 02:04:06 -05:00
}
2019-11-29 06:43:03 -06:00
pub fn walk_pat<'v, V: Visitor<'v>>(visitor: &mut V, pattern: &'v Pat<'v>) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(pattern.hir_id);
2019-09-26 10:18:31 -05:00
match pattern.kind {
2019-11-29 07:08:03 -06:00
PatKind::TupleStruct(ref qpath, children, _) => {
visitor.visit_qpath(qpath, pattern.hir_id, pattern.span);
walk_list!(visitor, visit_pat, children);
2015-07-31 02:04:06 -05:00
}
PatKind::Path(ref qpath) => {
visitor.visit_qpath(qpath, pattern.hir_id, pattern.span);
2015-07-31 02:04:06 -05:00
}
2019-11-29 07:08:03 -06:00
PatKind::Struct(ref qpath, fields, _) => {
visitor.visit_qpath(qpath, pattern.hir_id, pattern.span);
2015-07-31 02:04:06 -05:00
for field in fields {
visitor.visit_id(field.hir_id);
visitor.visit_ident(field.ident);
visitor.visit_pat(&field.pat)
2015-07-31 02:04:06 -05:00
}
}
2019-11-29 07:08:03 -06:00
PatKind::Or(pats) => walk_list!(visitor, visit_pat, pats),
PatKind::Tuple(tuple_elements, _) => {
walk_list!(visitor, visit_pat, tuple_elements);
2015-07-31 02:04:06 -05:00
}
2019-12-22 16:42:04 -06:00
PatKind::Box(ref subpattern) | PatKind::Ref(ref subpattern, _) => {
visitor.visit_pat(subpattern)
2015-07-31 02:04:06 -05:00
}
2019-03-07 05:18:59 -06:00
PatKind::Binding(_, _hir_id, ident, ref optional_subpattern) => {
visitor.visit_ident(ident);
walk_list!(visitor, visit_pat, optional_subpattern);
2015-07-31 02:04:06 -05:00
}
2016-02-14 06:25:12 -06:00
PatKind::Lit(ref expression) => visitor.visit_expr(expression),
PatKind::Range(ref lower_bound, ref upper_bound, _) => {
walk_list!(visitor, visit_expr, lower_bound);
walk_list!(visitor, visit_expr, upper_bound);
2015-07-31 02:04:06 -05:00
}
2016-02-14 06:25:12 -06:00
PatKind::Wild => (),
2019-11-29 07:08:03 -06:00
PatKind::Slice(prepatterns, ref slice_pattern, postpatterns) => {
walk_list!(visitor, visit_pat, prepatterns);
walk_list!(visitor, visit_pat, slice_pattern);
walk_list!(visitor, visit_pat, postpatterns);
2015-07-31 02:04:06 -05:00
}
}
}
2019-11-28 13:18:29 -06:00
pub fn walk_foreign_item<'v, V: Visitor<'v>>(visitor: &mut V, foreign_item: &'v ForeignItem<'v>) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(foreign_item.hir_id);
visitor.visit_vis(&foreign_item.vis);
visitor.visit_ident(foreign_item.ident);
2015-07-31 02:04:06 -05:00
match foreign_item.kind {
2019-11-28 13:18:29 -06:00
ForeignItemKind::Fn(ref function_declaration, param_names, ref generics) => {
visitor.visit_generics(generics);
visitor.visit_fn_decl(function_declaration);
for &param_name in param_names {
visitor.visit_ident(param_name);
}
2015-07-31 02:04:06 -05:00
}
2018-07-11 09:56:44 -05:00
ForeignItemKind::Static(ref typ, _) => visitor.visit_ty(typ),
ForeignItemKind::Type => (),
2015-07-31 02:04:06 -05:00
}
2019-11-28 13:18:29 -06:00
walk_list!(visitor, visit_attribute, foreign_item.attrs);
2015-07-31 02:04:06 -05:00
}
2019-11-30 10:46:46 -06:00
pub fn walk_param_bound<'v, V: Visitor<'v>>(visitor: &mut V, bound: &'v GenericBound<'v>) {
2015-07-31 02:04:06 -05:00
match *bound {
GenericBound::Trait(ref typ, modifier) => {
2015-07-31 02:04:06 -05:00
visitor.visit_poly_trait_ref(typ, modifier);
}
GenericBound::LangItemTrait(_, span, hir_id, args) => {
visitor.visit_id(hir_id);
visitor.visit_generic_args(span, args);
}
GenericBound::Outlives(ref lifetime) => visitor.visit_lifetime(lifetime),
2015-07-31 02:04:06 -05:00
}
}
2019-11-30 10:46:46 -06:00
pub fn walk_generic_param<'v, V: Visitor<'v>>(visitor: &mut V, param: &'v GenericParam<'v>) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(param.hir_id);
2019-11-30 17:17:43 -06:00
walk_list!(visitor, visit_attribute, param.attrs);
match param.name {
2018-06-09 15:25:33 -05:00
ParamName::Plain(ident) => visitor.visit_ident(ident),
ParamName::Error | ParamName::Fresh(_) => {}
}
2018-05-25 18:27:54 -05:00
match param.kind {
GenericParamKind::Lifetime { .. } => {}
2018-06-14 05:42:12 -05:00
GenericParamKind::Type { ref default, .. } => walk_list!(visitor, visit_ty, default),
GenericParamKind::Const { ref ty } => visitor.visit_ty(ty),
2015-07-31 02:04:06 -05:00
}
2019-11-30 17:17:43 -06:00
walk_list!(visitor, visit_param_bound, param.bounds);
}
2019-11-30 10:46:46 -06:00
pub fn walk_generics<'v, V: Visitor<'v>>(visitor: &mut V, generics: &'v Generics<'v>) {
2019-12-01 10:10:12 -06:00
walk_list!(visitor, visit_generic_param, generics.params);
2019-11-30 17:17:43 -06:00
walk_list!(visitor, visit_where_predicate, generics.where_clause.predicates);
}
2019-11-30 10:46:46 -06:00
pub fn walk_where_predicate<'v, V: Visitor<'v>>(
visitor: &mut V,
predicate: &'v WherePredicate<'v>,
) {
match predicate {
2019-12-22 16:42:04 -06:00
&WherePredicate::BoundPredicate(WhereBoundPredicate {
ref bounded_ty,
2019-11-30 17:17:43 -06:00
bounds,
bound_generic_params,
2019-12-22 16:42:04 -06:00
..
}) => {
visitor.visit_ty(bounded_ty);
walk_list!(visitor, visit_param_bound, bounds);
walk_list!(visitor, visit_generic_param, bound_generic_params);
}
2019-11-30 17:17:43 -06:00
&WherePredicate::RegionPredicate(WhereRegionPredicate { ref lifetime, bounds, .. }) => {
visitor.visit_lifetime(lifetime);
walk_list!(visitor, visit_param_bound, bounds);
}
2019-12-22 16:42:04 -06:00
&WherePredicate::EqPredicate(WhereEqPredicate {
hir_id, ref lhs_ty, ref rhs_ty, ..
}) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(hir_id);
visitor.visit_ty(lhs_ty);
visitor.visit_ty(rhs_ty);
2015-07-31 02:04:06 -05:00
}
}
}
2020-02-14 21:10:59 -06:00
pub fn walk_fn_ret_ty<'v, V: Visitor<'v>>(visitor: &mut V, ret_ty: &'v FnRetTy<'v>) {
if let FnRetTy::Return(ref output_ty) = *ret_ty {
visitor.visit_ty(output_ty)
2015-07-31 02:04:06 -05:00
}
}
2019-11-30 10:46:46 -06:00
pub fn walk_fn_decl<'v, V: Visitor<'v>>(visitor: &mut V, function_declaration: &'v FnDecl<'v>) {
2019-11-30 17:17:43 -06:00
for ty in function_declaration.inputs {
visitor.visit_ty(ty)
2015-07-31 02:04:06 -05:00
}
walk_fn_ret_ty(visitor, &function_declaration.output)
}
2015-09-27 14:23:31 -05:00
pub fn walk_fn_kind<'v, V: Visitor<'v>>(visitor: &mut V, function_kind: FnKind<'v>) {
2015-07-31 02:04:06 -05:00
match function_kind {
2016-08-26 11:23:42 -05:00
FnKind::ItemFn(_, generics, ..) => {
2015-07-31 02:04:06 -05:00
visitor.visit_generics(generics);
}
2019-12-22 16:42:04 -06:00
FnKind::Method(..) | FnKind::Closure(_) => {}
2015-07-31 02:04:06 -05:00
}
}
2015-07-31 02:04:06 -05:00
2019-12-22 16:42:04 -06:00
pub fn walk_fn<'v, V: Visitor<'v>>(
visitor: &mut V,
function_kind: FnKind<'v>,
2019-11-30 10:46:46 -06:00
function_declaration: &'v FnDecl<'v>,
2019-12-22 16:42:04 -06:00
body_id: BodyId,
_span: Span,
id: HirId,
) {
visitor.visit_id(id);
visitor.visit_fn_decl(function_declaration);
walk_fn_kind(visitor, function_kind);
visitor.visit_nested_body(body_id)
2015-07-31 02:04:06 -05:00
}
2019-11-28 14:47:10 -06:00
pub fn walk_trait_item<'v, V: Visitor<'v>>(visitor: &mut V, trait_item: &'v TraitItem<'v>) {
visitor.visit_ident(trait_item.ident);
2019-11-28 14:47:10 -06:00
walk_list!(visitor, visit_attribute, trait_item.attrs);
visitor.visit_generics(&trait_item.generics);
match trait_item.kind {
TraitItemKind::Const(ref ty, default) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(trait_item.hir_id);
2015-07-31 02:04:06 -05:00
visitor.visit_ty(ty);
walk_list!(visitor, visit_nested_body, default);
2015-07-31 02:04:06 -05:00
}
2020-03-05 09:57:34 -06:00
TraitItemKind::Fn(ref sig, TraitFn::Required(param_names)) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(trait_item.hir_id);
visitor.visit_fn_decl(&sig.decl);
for &param_name in param_names {
visitor.visit_ident(param_name);
}
2015-07-31 02:04:06 -05:00
}
2020-03-05 09:57:34 -06:00
TraitItemKind::Fn(ref sig, TraitFn::Provided(body_id)) => {
2019-12-22 16:42:04 -06:00
visitor.visit_fn(
FnKind::Method(trait_item.ident, sig, None, &trait_item.attrs),
&sig.decl,
body_id,
trait_item.span,
trait_item.hir_id,
);
2015-07-31 02:04:06 -05:00
}
2019-11-30 17:17:43 -06:00
TraitItemKind::Type(bounds, ref default) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(trait_item.hir_id);
walk_list!(visitor, visit_param_bound, bounds);
walk_list!(visitor, visit_ty, default);
2015-07-31 02:04:06 -05:00
}
}
}
pub fn walk_trait_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, trait_item_ref: &'v TraitItemRef) {
// N.B., deliberately force a compilation error if/when new fields are added.
let TraitItemRef { id, ident, ref kind, span: _, ref defaultness } = *trait_item_ref;
visitor.visit_nested_trait_item(id);
visitor.visit_ident(ident);
visitor.visit_associated_item_kind(kind);
visitor.visit_defaultness(defaultness);
}
2019-11-28 15:16:44 -06:00
pub fn walk_impl_item<'v, V: Visitor<'v>>(visitor: &mut V, impl_item: &'v ImplItem<'v>) {
// N.B., deliberately force a compilation error if/when new fields are added.
let ImplItem {
hir_id: _,
ident,
ref vis,
ref defaultness,
2019-11-28 15:16:44 -06:00
attrs,
ref generics,
ref kind,
span: _,
} = *impl_item;
visitor.visit_ident(ident);
visitor.visit_vis(vis);
visitor.visit_defaultness(defaultness);
walk_list!(visitor, visit_attribute, attrs);
visitor.visit_generics(generics);
match *kind {
ImplItemKind::Const(ref ty, body) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(impl_item.hir_id);
2015-07-31 02:04:06 -05:00
visitor.visit_ty(ty);
visitor.visit_nested_body(body);
2015-07-31 02:04:06 -05:00
}
2020-03-05 09:57:34 -06:00
ImplItemKind::Fn(ref sig, body_id) => {
2019-12-22 16:42:04 -06:00
visitor.visit_fn(
FnKind::Method(impl_item.ident, sig, Some(&impl_item.vis), &impl_item.attrs),
&sig.decl,
body_id,
impl_item.span,
impl_item.hir_id,
);
2015-07-31 02:04:06 -05:00
}
ImplItemKind::TyAlias(ref ty) => {
2019-02-06 07:16:11 -06:00
visitor.visit_id(impl_item.hir_id);
2015-07-31 02:04:06 -05:00
visitor.visit_ty(ty);
}
}
}
2019-11-30 10:46:46 -06:00
pub fn walk_impl_item_ref<'v, V: Visitor<'v>>(visitor: &mut V, impl_item_ref: &'v ImplItemRef<'v>) {
// N.B., deliberately force a compilation error if/when new fields are added.
let ImplItemRef { id, ident, ref kind, span: _, ref vis, ref defaultness } = *impl_item_ref;
visitor.visit_nested_impl_item(id);
visitor.visit_ident(ident);
visitor.visit_associated_item_kind(kind);
visitor.visit_vis(vis);
visitor.visit_defaultness(defaultness);
}
2019-12-01 05:49:54 -06:00
pub fn walk_struct_def<'v, V: Visitor<'v>>(
visitor: &mut V,
struct_definition: &'v VariantData<'v>,
) {
2020-01-07 10:38:38 -06:00
walk_list!(visitor, visit_id, struct_definition.ctor_hir_id());
2015-10-08 15:45:46 -05:00
walk_list!(visitor, visit_struct_field, struct_definition.fields());
2015-07-31 02:04:06 -05:00
}
2019-11-29 02:40:33 -06:00
pub fn walk_struct_field<'v, V: Visitor<'v>>(visitor: &mut V, struct_field: &'v StructField<'v>) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(struct_field.hir_id);
visitor.visit_vis(&struct_field.vis);
2018-05-25 18:50:15 -05:00
visitor.visit_ident(struct_field.ident);
visitor.visit_ty(&struct_field.ty);
2019-11-29 02:40:33 -06:00
walk_list!(visitor, visit_attribute, struct_field.attrs);
2015-07-31 02:04:06 -05:00
}
2019-11-29 06:43:03 -06:00
pub fn walk_block<'v, V: Visitor<'v>>(visitor: &mut V, block: &'v Block<'v>) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(block.hir_id);
2019-11-29 07:08:03 -06:00
walk_list!(visitor, visit_stmt, block.stmts);
walk_list!(visitor, visit_expr, &block.expr);
2015-07-31 02:04:06 -05:00
}
2019-11-29 06:43:03 -06:00
pub fn walk_stmt<'v, V: Visitor<'v>>(visitor: &mut V, statement: &'v Stmt<'v>) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(statement.hir_id);
2019-09-26 11:34:50 -05:00
match statement.kind {
StmtKind::Local(ref local) => visitor.visit_local(local),
StmtKind::Item(item) => visitor.visit_nested_item(item),
2019-12-22 16:42:04 -06:00
StmtKind::Expr(ref expression) | StmtKind::Semi(ref expression) => {
visitor.visit_expr(expression)
2015-07-31 02:04:06 -05:00
}
}
}
pub fn walk_anon_const<'v, V: Visitor<'v>>(visitor: &mut V, constant: &'v AnonConst) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(constant.hir_id);
visitor.visit_nested_body(constant.body);
}
2019-11-29 06:43:03 -06:00
pub fn walk_expr<'v, V: Visitor<'v>>(visitor: &mut V, expression: &'v Expr<'v>) {
2019-02-06 07:16:11 -06:00
visitor.visit_id(expression.hir_id);
walk_list!(visitor, visit_attribute, expression.attrs.iter());
match expression.kind {
2019-12-22 16:42:04 -06:00
ExprKind::Box(ref subexpression) => visitor.visit_expr(subexpression),
2019-11-29 07:08:03 -06:00
ExprKind::Array(subexpressions) => {
walk_list!(visitor, visit_expr, subexpressions);
2015-07-31 02:04:06 -05:00
}
2020-10-06 15:51:15 -05:00
ExprKind::ConstBlock(ref anon_const) => visitor.visit_anon_const(anon_const),
2018-07-11 07:05:29 -05:00
ExprKind::Repeat(ref element, ref count) => {
visitor.visit_expr(element);
visitor.visit_anon_const(count)
2015-07-31 02:04:06 -05:00
}
2019-11-29 07:08:03 -06:00
ExprKind::Struct(ref qpath, fields, ref optional_base) => {
visitor.visit_qpath(qpath, expression.hir_id, expression.span);
2015-07-31 02:04:06 -05:00
for field in fields {
2019-02-06 07:16:11 -06:00
visitor.visit_id(field.hir_id);
2018-05-25 18:50:15 -05:00
visitor.visit_ident(field.ident);
visitor.visit_expr(&field.expr)
2015-07-31 02:04:06 -05:00
}
walk_list!(visitor, visit_expr, optional_base);
2015-07-31 02:04:06 -05:00
}
2019-11-29 07:08:03 -06:00
ExprKind::Tup(subexpressions) => {
walk_list!(visitor, visit_expr, subexpressions);
2015-07-31 02:04:06 -05:00
}
2019-11-29 07:08:03 -06:00
ExprKind::Call(ref callee_expression, arguments) => {
visitor.visit_expr(callee_expression);
walk_list!(visitor, visit_expr, arguments);
2015-07-31 02:04:06 -05:00
}
ExprKind::MethodCall(ref segment, _, arguments, _) => {
visitor.visit_path_segment(expression.span, segment);
walk_list!(visitor, visit_expr, arguments);
2015-07-31 02:04:06 -05:00
}
2018-07-11 07:05:29 -05:00
ExprKind::Binary(_, ref left_expression, ref right_expression) => {
visitor.visit_expr(left_expression);
visitor.visit_expr(right_expression)
2015-07-31 02:04:06 -05:00
}
ExprKind::AddrOf(_, _, ref subexpression) | ExprKind::Unary(_, ref subexpression) => {
visitor.visit_expr(subexpression)
2015-07-31 02:04:06 -05:00
}
2018-07-11 07:05:29 -05:00
ExprKind::Cast(ref subexpression, ref typ) | ExprKind::Type(ref subexpression, ref typ) => {
visitor.visit_expr(subexpression);
visitor.visit_ty(typ)
2015-07-31 02:04:06 -05:00
}
ExprKind::DropTemps(ref subexpression) => {
visitor.visit_expr(subexpression);
}
2018-07-11 07:05:29 -05:00
ExprKind::Loop(ref block, ref opt_label, _) => {
walk_list!(visitor, visit_label, opt_label);
visitor.visit_block(block);
2015-07-31 02:04:06 -05:00
}
2019-11-29 07:08:03 -06:00
ExprKind::Match(ref subexpression, arms, _) => {
visitor.visit_expr(subexpression);
walk_list!(visitor, visit_arm, arms);
2015-07-31 02:04:06 -05:00
}
2019-12-22 16:42:04 -06:00
ExprKind::Closure(_, ref function_declaration, body, _fn_decl_span, _gen) => visitor
.visit_fn(
FnKind::Closure(&expression.attrs),
function_declaration,
body,
expression.span,
expression.hir_id,
),
2018-07-11 07:05:29 -05:00
ExprKind::Block(ref block, ref opt_label) => {
walk_list!(visitor, visit_label, opt_label);
visitor.visit_block(block);
}
ExprKind::Assign(ref lhs, ref rhs, _) => {
visitor.visit_expr(rhs);
visitor.visit_expr(lhs)
2015-07-31 02:04:06 -05:00
}
2018-07-11 07:05:29 -05:00
ExprKind::AssignOp(_, ref left_expression, ref right_expression) => {
visitor.visit_expr(right_expression);
Change how we compute yield_in_scope Compound operators (e.g. 'a += b') have two different possible evaluation orders. When the left-hand side is a primitive type, the expression is evaluated right-to-left. However, when the left-hand side is a non-primitive type, the expression is evaluated left-to-right. This causes problems when we try to determine if a type is live across a yield point. Since we need to perform this computation before typecheck has run, we can't simply check the types of the operands. This commit calculates the most 'pessimistic' scenario - that is, erring on the side of treating more types as live, rather than fewer. This is perfectly safe - in fact, this initial liveness computation is already overly conservative (e.g. issue #57478). The important thing is that we compute a superset of the types that are actually live across yield points. When we generate MIR, we'll determine which types actually need to stay live across a given yield point, and which ones cam actually be dropped. Concretely, we force the computed HIR traversal index for right-hand-side yield expression to be equal to the maximum index for the left-hand side. This covers both possible execution orders: * If the expression is evalauted right-to-left, our 'pessismitic' index is unecessary, but safe. We visit the expressions in an ExprKind::AssignOp from right to left, so it actually would have been safe to do nothing. However, while increasing the index of a yield point might cause the compiler to reject code that could actually compile, it will never cause incorrect code to be accepted. * If the expression is evaluated left-to-right, our 'pessimistic' index correctly ensures that types in the left-hand-side are seen as occuring before the yield - which is exactly what we want
2019-06-06 21:23:28 -05:00
visitor.visit_expr(left_expression);
2015-07-31 02:04:06 -05:00
}
2018-07-11 07:05:29 -05:00
ExprKind::Field(ref subexpression, ident) => {
visitor.visit_expr(subexpression);
2018-05-25 18:50:15 -05:00
visitor.visit_ident(ident);
2015-07-31 02:04:06 -05:00
}
2018-07-11 07:05:29 -05:00
ExprKind::Index(ref main_expression, ref index_expression) => {
visitor.visit_expr(main_expression);
visitor.visit_expr(index_expression)
2015-07-31 02:04:06 -05:00
}
2018-07-11 07:05:29 -05:00
ExprKind::Path(ref qpath) => {
visitor.visit_qpath(qpath, expression.hir_id, expression.span);
2015-07-31 02:04:06 -05:00
}
2018-07-11 07:05:29 -05:00
ExprKind::Break(ref destination, ref opt_expr) => {
2020-01-07 10:38:38 -06:00
walk_list!(visitor, visit_label, &destination.label);
walk_list!(visitor, visit_expr, opt_expr);
}
2018-07-11 07:05:29 -05:00
ExprKind::Continue(ref destination) => {
2020-01-07 10:38:38 -06:00
walk_list!(visitor, visit_label, &destination.label);
}
2018-07-11 07:05:29 -05:00
ExprKind::Ret(ref optional_expression) => {
walk_list!(visitor, visit_expr, optional_expression);
2015-07-31 02:04:06 -05:00
}
2020-02-12 11:32:41 -06:00
ExprKind::InlineAsm(ref asm) => {
for op in asm.operands {
match op {
InlineAsmOperand::In { expr, .. }
| InlineAsmOperand::InOut { expr, .. }
| InlineAsmOperand::Const { expr, .. }
| InlineAsmOperand::Sym { expr, .. } => visitor.visit_expr(expr),
InlineAsmOperand::Out { expr, .. } => {
if let Some(expr) = expr {
visitor.visit_expr(expr);
}
}
InlineAsmOperand::SplitInOut { in_expr, out_expr, .. } => {
visitor.visit_expr(in_expr);
if let Some(out_expr) = out_expr {
visitor.visit_expr(out_expr);
}
}
}
}
}
ExprKind::LlvmInlineAsm(ref asm) => {
2019-11-29 07:08:03 -06:00
walk_list!(visitor, visit_expr, asm.outputs_exprs);
walk_list!(visitor, visit_expr, asm.inputs_exprs);
2015-07-31 02:04:06 -05:00
}
ExprKind::Yield(ref subexpression, _) => {
2016-12-26 07:34:03 -06:00
visitor.visit_expr(subexpression);
}
ExprKind::Lit(_) | ExprKind::Err => {}
2015-07-31 02:04:06 -05:00
}
}
2019-11-29 06:43:03 -06:00
pub fn walk_arm<'v, V: Visitor<'v>>(visitor: &mut V, arm: &'v Arm<'v>) {
2019-03-30 17:54:29 -05:00
visitor.visit_id(arm.hir_id);
visitor.visit_pat(&arm.pat);
2018-08-29 23:18:11 -05:00
if let Some(ref g) = arm.guard {
match g {
Guard::If(ref e) => visitor.visit_expr(e),
}
}
visitor.visit_expr(&arm.body);
2019-11-29 07:08:03 -06:00
walk_list!(visitor, visit_attribute, arm.attrs);
2015-07-31 02:04:06 -05:00
}
2019-11-30 10:46:46 -06:00
pub fn walk_vis<'v, V: Visitor<'v>>(visitor: &mut V, vis: &'v Visibility<'v>) {
2019-02-26 08:55:01 -06:00
if let VisibilityKind::Restricted { ref path, hir_id } = vis.node {
2019-02-06 07:16:11 -06:00
visitor.visit_id(hir_id);
visitor.visit_path(path, hir_id)
}
}
pub fn walk_associated_item_kind<'v, V: Visitor<'v>>(_: &mut V, _: &'v AssocItemKind) {
// No visitable content here: this fn exists so you can call it if
// the right thing to do, should content be added in the future,
// would be to walk it.
}
pub fn walk_defaultness<'v, V: Visitor<'v>>(_: &mut V, _: &'v Defaultness) {
// No visitable content here: this fn exists so you can call it if
// the right thing to do, should content be added in the future,
// would be to walk it.
}