Skip to main content

rustc_resolve/
def_collector.rs

1use std::mem;
2
3use rustc_ast::visit::FnKind;
4use rustc_ast::*;
5use rustc_attr_parsing as attr;
6use rustc_attr_parsing::{AttributeParser, OmitDoc, ShouldEmit};
7use rustc_expand::expand::AstFragment;
8use rustc_hir as hir;
9use rustc_hir::Target;
10use rustc_hir::def::DefKind;
11use rustc_hir::def::Namespace::{TypeNS, ValueNS};
12use rustc_hir::def_id::LocalDefId;
13use rustc_middle::span_bug;
14use rustc_middle::ty::{PerOwnerResolverData, TyCtxtFeed};
15use rustc_span::{Span, Symbol, sym};
16use tracing::{debug, instrument};
17
18use crate::macros::MacroRulesScopeRef;
19use crate::{
20    ImplTraitContext, InvocationParent, ParentScope, Resolver, with_owner, with_owner_tables,
21};
22
23pub(crate) fn collect_definitions<'ra>(
24    resolver: &mut Resolver<'ra, '_>,
25    fragment: &AstFragment,
26    parent_scope: ParentScope<'ra>,
27) -> MacroRulesScopeRef<'ra> {
28    let invocation_parent = resolver.invocation_parents[&parent_scope.expansion];
29    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/def_collector.rs:29",
                        "rustc_resolve::def_collector", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/def_collector.rs"),
                        ::tracing_core::__macro_support::Option::Some(29u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_resolve::def_collector"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("new fragment to visit with invocation_parent: {0:?}",
                                                    invocation_parent) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("new fragment to visit with invocation_parent: {invocation_parent:?}");
30    if true {
    {
        match (&resolver.current_owner.id, &DUMMY_NODE_ID) {
            (left_val, right_val) => {
                if !(*left_val == *right_val) {
                    let kind = ::core::panicking::AssertKind::Eq;
                    ::core::panicking::assert_failed(kind, &*left_val,
                        &*right_val, ::core::option::Option::None);
                }
            }
        }
    };
};debug_assert_eq!(resolver.current_owner.id, DUMMY_NODE_ID);
31    with_owner(resolver, invocation_parent.owner, |r| {
32        let mut visitor = DefCollector { r, invocation_parent, parent_scope };
33        fragment.visit_with(&mut visitor);
34        visitor.parent_scope.macro_rules
35    })
36}
37
38/// Creates `DefId`s for nodes in the AST.
39pub(crate) struct DefCollector<'a, 'ra, 'tcx> {
40    pub(crate) r: &'a mut Resolver<'ra, 'tcx>,
41    invocation_parent: InvocationParent,
42    pub(crate) parent_scope: ParentScope<'ra>,
43}
44
45impl<'a, 'ra, 'tcx> DefCollector<'a, 'ra, 'tcx> {
46    pub(super) fn create_def(
47        &mut self,
48        node_id: NodeId,
49        name: Option<Symbol>,
50        def_kind: DefKind,
51        span: Span,
52    ) -> TyCtxtFeed<'tcx, LocalDefId> {
53        let parent_def = self.invocation_parent.parent_def;
54        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/def_collector.rs:54",
                        "rustc_resolve::def_collector", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/def_collector.rs"),
                        ::tracing_core::__macro_support::Option::Some(54u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_resolve::def_collector"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("create_def(node_id={0:?}, def_kind={1:?}, parent_def={2:?})",
                                                    node_id, def_kind, parent_def) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
55            "create_def(node_id={:?}, def_kind={:?}, parent_def={:?})",
56            node_id, def_kind, parent_def
57        );
58        self.r.create_def(
59            parent_def,
60            node_id,
61            name,
62            def_kind,
63            self.parent_scope.expansion.to_expn_id(),
64            span.with_parent(None),
65            false,
66        )
67    }
68
69    fn with_parent<F: FnOnce(&mut Self)>(&mut self, parent_def: LocalDefId, f: F) {
70        let orig_parent_def = mem::replace(&mut self.invocation_parent.parent_def, parent_def);
71        f(self);
72        self.invocation_parent.parent_def = orig_parent_def;
73    }
74
75    pub(super) fn with_owner<F: FnOnce(&mut Self, TyCtxtFeed<'tcx, LocalDefId>)>(
76        &mut self,
77        owner: NodeId,
78        name: Option<Symbol>,
79        def_kind: DefKind,
80        span: Span,
81        f: F,
82    ) {
83        if true {
    {
        match (&owner, &DUMMY_NODE_ID) {
            (left_val, right_val) => {
                if *left_val == *right_val {
                    let kind = ::core::panicking::AssertKind::Ne;
                    ::core::panicking::assert_failed(kind, &*left_val,
                        &*right_val, ::core::option::Option::None);
                }
            }
        }
    };
};debug_assert_ne!(owner, DUMMY_NODE_ID);
84        if true {
    {
        match (&owner, &CRATE_NODE_ID) {
            (left_val, right_val) => {
                if *left_val == *right_val {
                    let kind = ::core::panicking::AssertKind::Ne;
                    ::core::panicking::assert_failed(kind, &*left_val,
                        &*right_val, ::core::option::Option::None);
                }
            }
        }
    };
};debug_assert_ne!(owner, CRATE_NODE_ID);
85        // We only get here if the owner didn't exist yet. After the owner has been created,
86        // future invocations of `collect_definitions` will get the owner out of the `owners`
87        // table.
88        let parent_def = self.invocation_parent.parent_def;
89        let feed = self.r.create_def(
90            parent_def,
91            owner,
92            name,
93            def_kind,
94            self.parent_scope.expansion.to_expn_id(),
95            span.with_parent(None),
96            true,
97        );
98        let tables = PerOwnerResolverData::new(owner, feed.key());
99
100        let orig_invoc_owner = mem::replace(&mut self.invocation_parent.owner, owner);
101        with_owner_tables(self, owner, tables, |this| f(this, feed));
102        let old = mem::replace(&mut self.invocation_parent.owner, orig_invoc_owner);
103        {
    match (&old, &owner) {
        (left_val, right_val) => {
            if !(*left_val == *right_val) {
                let kind = ::core::panicking::AssertKind::Eq;
                ::core::panicking::assert_failed(kind, &*left_val,
                    &*right_val, ::core::option::Option::None);
            }
        }
    }
};assert_eq!(old, owner);
104    }
105
106    fn with_impl_trait<F: FnOnce(&mut Self)>(
107        &mut self,
108        impl_trait_context: ImplTraitContext,
109        f: F,
110    ) {
111        let orig_itc =
112            mem::replace(&mut self.invocation_parent.impl_trait_context, impl_trait_context);
113        f(self);
114        self.invocation_parent.impl_trait_context = orig_itc;
115    }
116
117    fn collect_field(&mut self, field: &'a FieldDef, index: Option<usize>) {
118        let index = |this: &Self| {
119            index.unwrap_or_else(|| {
120                let node_id = NodeId::placeholder_from_expn_id(this.parent_scope.expansion);
121                this.r.placeholder_field_indices[&node_id]
122            })
123        };
124
125        if field.is_placeholder {
126            let old_index = self.r.placeholder_field_indices.insert(field.id, index(self));
127            if !old_index.is_none() {
    {
        ::core::panicking::panic_fmt(format_args!("placeholder field index is reset for a node ID"));
    }
};assert!(old_index.is_none(), "placeholder field index is reset for a node ID");
128            self.visit_macro_invoc(field.id);
129            self.visit_invoc(field.id);
130        } else {
131            let name = field.ident.map_or_else(|| sym::integer(index(self)), |ident| ident.name);
132            let def = self.create_def(field.id, Some(name), DefKind::Field, field.span);
133            self.with_parent(def.def_id(), |this| this.brg_visit_field_def(field, def));
134        }
135    }
136
137    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("visit_macro_invoc",
                                    "rustc_resolve::def_collector", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/def_collector.rs"),
                                    ::tracing_core::__macro_support::Option::Some(137u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_resolve::def_collector"),
                                    ::tracing_core::field::FieldSet::new(&[{
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("id")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("id");
                                                        NAME.as_str()
                                                    }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&id)
                                                            as &dyn ::tracing::field::Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: () = loop {};
            return __tracing_attr_fake_return;
        }
        {
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/def_collector.rs:139",
                                    "rustc_resolve::def_collector", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/def_collector.rs"),
                                    ::tracing_core::__macro_support::Option::Some(139u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_resolve::def_collector"),
                                    ::tracing_core::field::FieldSet::new(&[{
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("self.invocation_parent")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("self.invocation_parent");
                                                        NAME.as_str()
                                                    }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::EVENT)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let enabled =
                    ::tracing::Level::DEBUG <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::DEBUG <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        {
                            let interest = __CALLSITE.interest();
                            !interest.is_never() &&
                                ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                    interest)
                        };
                if enabled {
                    (|value_set: ::tracing::field::ValueSet|
                                {
                                    let meta = __CALLSITE.metadata();
                                    ::tracing::Event::dispatch(meta, &value_set);
                                    ;
                                })({
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&self.invocation_parent)
                                                        as &dyn ::tracing::field::Value))])
                        });
                } else { ; }
            };
            let id = id.placeholder_to_expn_id();
            let old_parent =
                self.r.invocation_parents.insert(id, self.invocation_parent);
            if !old_parent.is_none() {
                {
                    ::core::panicking::panic_fmt(format_args!("parent `LocalDefId` is reset for an invocation"));
                }
            };
        }
    }
}#[instrument(level = "debug", skip(self))]
138    fn visit_macro_invoc(&mut self, id: NodeId) {
139        debug!(?self.invocation_parent);
140
141        let id = id.placeholder_to_expn_id();
142        let old_parent = self.r.invocation_parents.insert(id, self.invocation_parent);
143        assert!(old_parent.is_none(), "parent `LocalDefId` is reset for an invocation");
144    }
145}
146
147impl<'a, 'ra, 'tcx> visit::Visitor<'a> for DefCollector<'a, 'ra, 'tcx> {
148    fn visit_item(&mut self, i: &'a Item) {
149        // Pick the def data. This need not be unique, but the more
150        // information we encapsulate into, the better
151        let mut opt_syn_ext = None;
152        let def_kind = match &i.kind {
153            ItemKind::Impl(i) => DefKind::Impl { of_trait: i.of_trait.is_some() },
154            ItemKind::ForeignMod(..) => DefKind::ForeignMod,
155            ItemKind::Mod(..) => DefKind::Mod,
156            ItemKind::Trait(..) => DefKind::Trait,
157            ItemKind::TraitAlias(..) => DefKind::TraitAlias,
158            ItemKind::Enum(..) => DefKind::Enum,
159            ItemKind::Struct(..) => DefKind::Struct,
160            ItemKind::Union(..) => DefKind::Union,
161            ItemKind::ExternCrate(..) => DefKind::ExternCrate,
162            ItemKind::TyAlias(..) => DefKind::TyAlias,
163            ItemKind::Static(s) => DefKind::Static {
164                safety: hir::Safety::Safe,
165                mutability: s.mutability,
166                nested: false,
167            },
168            ItemKind::Const(citem) => {
169                let is_type_const = citem.kind == ConstItemKind::TypeConst;
170                DefKind::Const { is_type_const }
171            }
172            ItemKind::ConstBlock(..) => DefKind::Const { is_type_const: false },
173            ItemKind::Fn(..) | ItemKind::Delegation(..) => DefKind::Fn,
174            ItemKind::MacroDef(ident, def) => {
175                let edition = i.span.edition();
176
177                // FIXME(jdonszelmann) make one of these in the resolver?
178                // FIXME(jdonszelmann) don't care about tools here maybe? Just parse what we can.
179                // Does that prevents errors from happening? maybe
180                let mut parser = AttributeParser::new(
181                    &self.r.tcx.sess,
182                    self.r.features,
183                    self.r.tcx().registered_attr_tools(()),
184                    ShouldEmit::Nothing,
185                );
186                let attrs = parser.parse_attribute_list(
187                    &i.attrs,
188                    i.span,
189                    Target::MacroDef,
190                    OmitDoc::Skip,
191                    std::convert::identity,
192                    |_lint_id, _span, _kind| {
193                        // FIXME(jdonszelmann): emit lints here properly
194                        // NOTE that before new attribute parsing, they didn't happen either
195                        // but it would be nice if we could change that.
196                    },
197                );
198
199                let ext = self.r.compile_macro(def, *ident, &attrs, i.span, i.id, edition);
200                let macro_kinds = ext.macro_kinds();
201                opt_syn_ext = Some(ext);
202                DefKind::Macro(macro_kinds)
203            }
204            ItemKind::GlobalAsm(..) => DefKind::GlobalAsm,
205            ItemKind::Use(_) => {
206                return self.with_owner(i.id, None, DefKind::Use, i.span, |this, feed| {
207                    this.brg_visit_item(i, feed);
208                });
209            }
210            ItemKind::MacCall(..) => {
211                self.visit_macro_invoc(i.id);
212                self.brg_visit_mac_call_in_module(i.id);
213                return;
214            }
215            ItemKind::DelegationMac(..) => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
216        };
217        self.with_owner(
218            i.id,
219            i.kind.ident().map(|ident| ident.name),
220            def_kind,
221            i.span,
222            |this, feed| {
223                if let Some(ext) = opt_syn_ext {
224                    this.r.local_macro_map.insert(feed.def_id(), this.r.arenas.alloc_macro(ext));
225                }
226
227                this.with_parent(feed.def_id(), |this| {
228                    this.with_impl_trait(ImplTraitContext::Existential, |this| {
229                        this.brg_visit_item(i, feed)
230                    })
231                });
232            },
233        );
234    }
235
236    fn visit_block(&mut self, block: &'a Block) {
237        self.brg_visit_block(block);
238    }
239
240    fn visit_fn(&mut self, fn_kind: FnKind<'a>, _: &AttrVec, span: Span, _: NodeId) {
241        match fn_kind {
242            FnKind::Fn(
243                ctxt,
244                _vis,
245                Fn {
246                    sig: FnSig { header, decl, span: _ }, ident, generics, contract, body, ..
247                },
248            ) if let Some(coroutine_marker) = header.coroutine_marker
249                // Foreign ones are denied, so don't create them here.
250                && ctxt != visit::FnCtxt::Foreign =>
251            {
252                self.visit_ident(ident);
253                self.visit_fn_header(header);
254                self.visit_generics(generics);
255                if let Some(contract) = contract {
256                    self.visit_contract(contract);
257                }
258
259                // For async functions, we need to create their inner defs inside of a
260                // closure to match their desugared representation. Besides that,
261                // we must mirror everything that `visit::walk_fn` below does.
262                let FnDecl { inputs, output } = &**decl;
263                for param in inputs {
264                    self.visit_param(param);
265                }
266
267                let return_def = self
268                    .create_def(
269                        coroutine_marker.return_impl_trait_id,
270                        None,
271                        DefKind::OpaqueTy,
272                        coroutine_marker.span,
273                    )
274                    .def_id();
275                self.with_parent(return_def, |this| this.visit_fn_ret_ty(output));
276
277                // If this async fn has no body (i.e. it's an async fn signature in a trait)
278                // then the closure_def will never be used, and we should avoid generating a
279                // def-id for it.
280                if let Some(body) = body {
281                    let closure_def = self
282                        .create_def(coroutine_marker.closure_id, None, DefKind::Closure, span)
283                        .def_id();
284                    self.with_parent(closure_def, |this| this.visit_block(body));
285                }
286            }
287            FnKind::Closure(binder, Some(coroutine_marker), decl, body) => {
288                self.visit_closure_binder(binder);
289                visit::walk_fn_decl(self, decl);
290
291                // Async closures desugar to closures inside of closures, so
292                // we must create two defs.
293                let coroutine_def = self
294                    .create_def(coroutine_marker.closure_id, None, DefKind::Closure, span)
295                    .def_id();
296                self.with_parent(coroutine_def, |this| this.visit_expr(body));
297            }
298            _ => visit::walk_fn(self, fn_kind),
299        }
300    }
301
302    fn visit_foreign_item(&mut self, fi: &'a ForeignItem) {
303        let (ident, def_kind) = match fi.kind {
304            ForeignItemKind::Static(StaticItem {
305                ident,
306                ty: _,
307                mutability,
308                expr: _,
309                safety,
310                define_opaque: _,
311                eii_impl: _,
312            }) => {
313                let safety = match safety {
314                    ast::Safety::Unsafe(_) | ast::Safety::Default => hir::Safety::Unsafe,
315                    ast::Safety::Safe(_) => hir::Safety::Safe,
316                };
317
318                (ident, DefKind::Static { safety, mutability, nested: false })
319            }
320            ForeignItemKind::Fn(Fn { ident, .. }) => (ident, DefKind::Fn),
321            ForeignItemKind::TyAlias(TyAlias { ident, .. }) => (ident, DefKind::ForeignTy),
322            ForeignItemKind::MacCall(_) => {
323                self.visit_invoc_in_module(fi.id);
324                self.visit_macro_invoc(fi.id);
325                return;
326            }
327        };
328
329        self.with_owner(fi.id, Some(ident.name), def_kind, fi.span, |this, def| {
330            this.with_parent(def.def_id(), |this| {
331                this.build_reduced_graph_for_foreign_item(fi, ident, def);
332                visit::walk_item(this, fi)
333            });
334        })
335    }
336
337    fn visit_variant(&mut self, v: &'a Variant) {
338        if v.is_placeholder {
339            self.visit_macro_invoc(v.id);
340            self.visit_invoc_in_module(v.id);
341            return;
342        }
343        let feed = self.create_def(v.id, Some(v.ident.name), DefKind::Variant, v.span);
344        self.with_parent(feed.def_id(), |this| this.brg_visit_variant(v, feed));
345    }
346
347    fn visit_where_predicate(&mut self, pred: &'a WherePredicate) {
348        if pred.is_placeholder {
349            self.visit_macro_invoc(pred.id);
350            self.visit_invoc(pred.id);
351        } else {
352            visit::walk_where_predicate(self, pred)
353        }
354    }
355
356    fn visit_variant_data(&mut self, data: &'a VariantData) {
357        // The assumption here is that non-`cfg` macro expansion cannot change field indices.
358        // It currently holds because only inert attributes are accepted on fields,
359        // and every such attribute expands into a single field after it's resolved.
360        for (index, field) in data.fields().iter().enumerate() {
361            self.collect_field(field, Some(index));
362        }
363    }
364
365    fn visit_generic_param(&mut self, param: &'a GenericParam) {
366        if param.is_placeholder {
367            self.visit_macro_invoc(param.id);
368            self.visit_invoc(param.id);
369            return;
370        }
371        let def_kind = match param.kind {
372            GenericParamKind::Lifetime { .. } => DefKind::LifetimeParam,
373            GenericParamKind::Type { .. } => DefKind::TyParam,
374            GenericParamKind::Const { .. } => DefKind::ConstParam,
375        };
376        self.create_def(param.id, Some(param.ident.name), def_kind, param.ident.span);
377
378        // impl-Trait can happen inside generic parameters, like
379        // ```
380        // fn foo<U: Iterator<Item = impl Clone>>() {}
381        // ```
382        //
383        // In that case, the impl-trait is lowered as an additional generic parameter.
384        self.with_impl_trait(ImplTraitContext::Universal, |this| {
385            visit::walk_generic_param(this, param)
386        });
387    }
388
389    fn visit_assoc_item(&mut self, i: &'a AssocItem, ctxt: visit::AssocCtxt) {
390        let (ident, def_kind, ns) = match &i.kind {
391            AssocItemKind::Fn(Fn { ident, .. })
392            | AssocItemKind::Delegation(Delegation { ident, .. }) => {
393                (*ident, DefKind::AssocFn, ValueNS)
394            }
395            AssocItemKind::Const(ConstItem { ident, kind, .. }) => (
396                *ident,
397                DefKind::AssocConst { is_type_const: *kind == ConstItemKind::TypeConst },
398                ValueNS,
399            ),
400            AssocItemKind::Type(TyAlias { ident, .. }) => (*ident, DefKind::AssocTy, TypeNS),
401            AssocItemKind::MacCall(..) => {
402                self.visit_macro_invoc(i.id);
403                self.visit_assoc_item_mac_call(i, ctxt);
404                return;
405            }
406            AssocItemKind::DelegationMac(..) => {
407                ::rustc_middle::util::bug::span_bug_fmt(i.span,
    format_args!("degation mac invoc should have already been handled"))span_bug!(i.span, "degation mac invoc should have already been handled")
408            }
409        };
410
411        self.with_owner(i.id, Some(ident.name), def_kind, i.span, |this, feed| {
412            this.with_parent(feed.def_id(), |this| {
413                this.brg_visit_assoc_item(i, ctxt, ident, ns, feed)
414            });
415        })
416    }
417
418    fn visit_pat(&mut self, pat: &'a Pat) {
419        match pat.kind {
420            PatKind::MacCall(..) => {
421                self.visit_macro_invoc(pat.id);
422                self.visit_invoc(pat.id);
423            }
424            _ => visit::walk_pat(self, pat),
425        }
426    }
427
428    fn visit_anon_const(&mut self, constant: &'a AnonConst) {
429        let parent =
430            self.create_def(constant.id, None, DefKind::AnonConst, constant.value.span).def_id();
431        self.with_parent(parent, |this| visit::walk_anon_const(this, constant));
432    }
433
434    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("visit_expr",
                                    "rustc_resolve::def_collector", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/def_collector.rs"),
                                    ::tracing_core::__macro_support::Option::Some(434u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_resolve::def_collector"),
                                    ::tracing_core::field::FieldSet::new(&[{
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("expr")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("expr");
                                                        NAME.as_str()
                                                    }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&expr)
                                                            as &dyn ::tracing::field::Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: () = loop {};
            return __tracing_attr_fake_return;
        }
        {
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event compiler/rustc_resolve/src/def_collector.rs:436",
                                    "rustc_resolve::def_collector", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_resolve/src/def_collector.rs"),
                                    ::tracing_core::__macro_support::Option::Some(436u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_resolve::def_collector"),
                                    ::tracing_core::field::FieldSet::new(&[{
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("self.invocation_parent")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("self.invocation_parent");
                                                        NAME.as_str()
                                                    }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::EVENT)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let enabled =
                    ::tracing::Level::DEBUG <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::DEBUG <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        {
                            let interest = __CALLSITE.interest();
                            !interest.is_never() &&
                                ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                    interest)
                        };
                if enabled {
                    (|value_set: ::tracing::field::ValueSet|
                                {
                                    let meta = __CALLSITE.metadata();
                                    ::tracing::Event::dispatch(meta, &value_set);
                                    ;
                                })({
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&self.invocation_parent)
                                                        as &dyn ::tracing::field::Value))])
                        });
                } else { ; }
            };
            match &expr.kind {
                ExprKind::MacCall(..) => {
                    self.visit_macro_invoc(expr.id);
                    self.visit_invoc(expr.id);
                }
                ExprKind::Closure(..) | ExprKind::Gen(..) => {
                    let def =
                        self.create_def(expr.id, None, DefKind::Closure,
                                expr.span).def_id();
                    self.with_parent(def, |this| visit::walk_expr(this, expr));
                }
                _ => visit::walk_expr(self, expr),
            }
        }
    }
}#[instrument(level = "debug", skip(self))]
435    fn visit_expr(&mut self, expr: &'a Expr) {
436        debug!(?self.invocation_parent);
437
438        match &expr.kind {
439            ExprKind::MacCall(..) => {
440                self.visit_macro_invoc(expr.id);
441                self.visit_invoc(expr.id);
442            }
443            ExprKind::Closure(..) | ExprKind::Gen(..) => {
444                let def = self.create_def(expr.id, None, DefKind::Closure, expr.span).def_id();
445                self.with_parent(def, |this| visit::walk_expr(this, expr));
446            }
447            _ => visit::walk_expr(self, expr),
448        }
449    }
450
451    fn visit_ty(&mut self, ty: &'a Ty) {
452        match ty.kind {
453            TyKind::MacCall(..) => {
454                self.visit_macro_invoc(ty.id);
455                self.visit_invoc(ty.id);
456            }
457            TyKind::ImplTrait(opaque_id, _) => {
458                let name = *self
459                    .r
460                    .impl_trait_names
461                    .get(&ty.id)
462                    .unwrap_or_else(|| ::rustc_middle::util::bug::span_bug_fmt(ty.span,
    format_args!("expected this opaque to be named"))span_bug!(ty.span, "expected this opaque to be named"));
463                let kind = match self.invocation_parent.impl_trait_context {
464                    ImplTraitContext::Universal => DefKind::TyParam,
465                    ImplTraitContext::Existential => DefKind::OpaqueTy,
466                    ImplTraitContext::InBinding => return visit::walk_ty(self, ty),
467                };
468                let id = self.create_def(opaque_id, Some(name), kind, ty.span).def_id();
469                match self.invocation_parent.impl_trait_context {
470                    // Do not nest APIT, as we desugar them as `impl_trait: bounds`,
471                    // so the `impl_trait` node is not a parent to `bounds`.
472                    ImplTraitContext::Universal => visit::walk_ty(self, ty),
473                    ImplTraitContext::Existential => {
474                        self.with_parent(id, |this| visit::walk_ty(this, ty))
475                    }
476                    ImplTraitContext::InBinding => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
477                };
478            }
479            _ => visit::walk_ty(self, ty),
480        }
481    }
482
483    fn visit_stmt(&mut self, stmt: &'a Stmt) {
484        match stmt.kind {
485            StmtKind::MacCall(..) => {
486                self.brg_visit_mac_call_in_module(stmt.id);
487                self.visit_macro_invoc(stmt.id)
488            }
489            // FIXME(impl_trait_in_bindings): We don't really have a good way of
490            // introducing the right `ImplTraitContext` here for all the cases we
491            // care about, in case we want to introduce ITIB to other positions
492            // such as turbofishes (e.g. `foo::<impl Fn()>(|| {})`).
493            StmtKind::Let(ref local) => self.with_impl_trait(ImplTraitContext::InBinding, |this| {
494                visit::walk_local(this, local)
495            }),
496            _ => visit::walk_stmt(self, stmt),
497        }
498    }
499
500    fn visit_arm(&mut self, arm: &'a Arm) {
501        if arm.is_placeholder {
502            self.visit_macro_invoc(arm.id);
503            self.visit_invoc(arm.id);
504        } else {
505            visit::walk_arm(self, arm)
506        }
507    }
508
509    fn visit_expr_field(&mut self, f: &'a ExprField) {
510        if f.is_placeholder {
511            self.visit_macro_invoc(f.id);
512            self.visit_invoc(f.id);
513        } else {
514            visit::walk_expr_field(self, f)
515        }
516    }
517
518    fn visit_pat_field(&mut self, fp: &'a PatField) {
519        if fp.is_placeholder {
520            self.visit_macro_invoc(fp.id);
521            self.visit_invoc(fp.id);
522        } else {
523            visit::walk_pat_field(self, fp)
524        }
525    }
526
527    fn visit_param(&mut self, p: &'a Param) {
528        if p.is_placeholder {
529            self.visit_macro_invoc(p.id);
530            self.visit_invoc(p.id);
531        } else {
532            self.with_impl_trait(ImplTraitContext::Universal, |this| visit::walk_param(this, p))
533        }
534    }
535
536    // This method is called only when we are visiting an individual field
537    // after expanding an attribute on it.
538    fn visit_field_def(&mut self, field: &'a FieldDef) {
539        self.collect_field(field, None);
540    }
541
542    fn visit_crate(&mut self, krate: &'a Crate) {
543        if krate.is_placeholder {
544            self.visit_macro_invoc(krate.id);
545            self.visit_invoc_in_module(krate.id);
546        } else {
547            // Visit attributes after items for backward compatibility.
548            // This way they can use `macro_rules` defined later.
549
550            // We always have an invocation parent (set in `collect_definitions`)
551            // of at least the crate root, even for visiting the crate root,
552            // which would then remove the crate root from the tables
553            // list twice and try to insert it twice afterwards.
554            if true {
    {
        match (&self.r.current_owner.id, &CRATE_NODE_ID) {
            (left_val, right_val) => {
                if !(*left_val == *right_val) {
                    let kind = ::core::panicking::AssertKind::Eq;
                    ::core::panicking::assert_failed(kind, &*left_val,
                        &*right_val, ::core::option::Option::None);
                }
            }
        }
    };
};debug_assert_eq!(self.r.current_owner.id, CRATE_NODE_ID);
555
556            for elem in &krate.items {
    match ::rustc_ast_ir::visit::VisitorResult::branch(self.visit_item(elem))
        {
        core::ops::ControlFlow::Continue(()) =>
            (),
            #[allow(unreachable_code)]
            core::ops::ControlFlow::Break(r) => {
            return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
        }
    };
};visit::walk_list!(self, visit_item, &krate.items);
557            for elem in &krate.attrs {
    match ::rustc_ast_ir::visit::VisitorResult::branch(self.visit_attribute(elem))
        {
        core::ops::ControlFlow::Continue(()) =>
            (),
            #[allow(unreachable_code)]
            core::ops::ControlFlow::Break(r) => {
            return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
        }
    };
};visit::walk_list!(self, visit_attribute, &krate.attrs);
558            self.contains_macro_use(&krate.attrs);
559        }
560    }
561
562    fn visit_attribute(&mut self, attr: &'a Attribute) {
563        use SyntheticAttr::*;
564        let orig_in_attr = mem::replace(&mut self.invocation_parent.in_attr, true);
565        match &attr.kind {
566            AttrKind::Normal(normal) => {
567                if attr::is_builtin_attr(&normal.item) {
568                    self.r
569                        .builtin_attrs
570                        .push((normal.item.path.segments[0].ident, self.parent_scope));
571                }
572            }
573            AttrKind::Synthetic(CfgTrace(_) | CfgAttrTrace(_)) => {}
574            AttrKind::DocComment(..) => {}
575        }
576        visit::walk_attribute(self, attr);
577        self.invocation_parent.in_attr = orig_in_attr;
578    }
579
580    fn visit_inline_asm(&mut self, asm: &'a InlineAsm) {
581        let InlineAsm {
582            asm_macro: _,
583            template: _,
584            template_strs: _,
585            operands,
586            clobber_abis: _,
587            options: _,
588            line_spans: _,
589        } = asm;
590        for (op, _span) in operands {
591            match op {
592                InlineAsmOperand::In { expr, reg: _ }
593                | InlineAsmOperand::Out { expr: Some(expr), reg: _, late: _ }
594                | InlineAsmOperand::InOut { expr, reg: _, late: _ } => {
595                    self.visit_expr(expr);
596                }
597                InlineAsmOperand::Out { expr: None, reg: _, late: _ } => {}
598                InlineAsmOperand::SplitInOut { in_expr, out_expr, reg: _, late: _ } => {
599                    self.visit_expr(in_expr);
600                    if let Some(expr) = out_expr {
601                        self.visit_expr(expr);
602                    }
603                }
604                InlineAsmOperand::Const { anon_const } => {
605                    let def = self
606                        .create_def(anon_const.id, None, DefKind::AnonConst, anon_const.value.span)
607                        .def_id();
608                    self.with_parent(def, |this| visit::walk_anon_const(this, anon_const));
609                }
610                InlineAsmOperand::Sym { sym } => self.visit_inline_asm_sym(sym),
611                InlineAsmOperand::Label { block } => self.visit_block(block),
612            }
613        }
614    }
615}