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
38pub(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 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 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 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 },
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_kind) = header.coroutine_kind
249 && 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 let FnDecl { inputs, output } = &**decl;
263 for param in inputs {
264 self.visit_param(param);
265 }
266
267 let (return_id, return_span) = coroutine_kind.return_id();
268 let return_def =
269 self.create_def(return_id, None, DefKind::OpaqueTy, return_span).def_id();
270 self.with_parent(return_def, |this| this.visit_fn_ret_ty(output));
271
272 if let Some(body) = body {
276 let closure_def = self
277 .create_def(coroutine_kind.closure_id(), None, DefKind::Closure, span)
278 .def_id();
279 self.with_parent(closure_def, |this| this.visit_block(body));
280 }
281 }
282 FnKind::Closure(binder, Some(coroutine_kind), decl, body) => {
283 self.visit_closure_binder(binder);
284 visit::walk_fn_decl(self, decl);
285
286 let coroutine_def = self
289 .create_def(coroutine_kind.closure_id(), None, DefKind::Closure, span)
290 .def_id();
291 self.with_parent(coroutine_def, |this| this.visit_expr(body));
292 }
293 _ => visit::walk_fn(self, fn_kind),
294 }
295 }
296
297 fn visit_foreign_item(&mut self, fi: &'a ForeignItem) {
298 let (ident, def_kind) = match fi.kind {
299 ForeignItemKind::Static(StaticItem {
300 ident,
301 ty: _,
302 mutability,
303 expr: _,
304 safety,
305 define_opaque: _,
306 eii_impls: _,
307 }) => {
308 let safety = match safety {
309 ast::Safety::Unsafe(_) | ast::Safety::Default => hir::Safety::Unsafe,
310 ast::Safety::Safe(_) => hir::Safety::Safe,
311 };
312
313 (ident, DefKind::Static { safety, mutability, nested: false })
314 }
315 ForeignItemKind::Fn(Fn { ident, .. }) => (ident, DefKind::Fn),
316 ForeignItemKind::TyAlias(TyAlias { ident, .. }) => (ident, DefKind::ForeignTy),
317 ForeignItemKind::MacCall(_) => {
318 self.visit_invoc_in_module(fi.id);
319 self.visit_macro_invoc(fi.id);
320 return;
321 }
322 };
323
324 self.with_owner(fi.id, Some(ident.name), def_kind, fi.span, |this, def| {
325 this.with_parent(def.def_id(), |this| {
326 this.build_reduced_graph_for_foreign_item(fi, ident, def);
327 visit::walk_item(this, fi)
328 });
329 })
330 }
331
332 fn visit_variant(&mut self, v: &'a Variant) {
333 if v.is_placeholder {
334 self.visit_macro_invoc(v.id);
335 self.visit_invoc_in_module(v.id);
336 return;
337 }
338 let feed = self.create_def(v.id, Some(v.ident.name), DefKind::Variant, v.span);
339 self.with_parent(feed.def_id(), |this| this.brg_visit_variant(v, feed));
340 }
341
342 fn visit_where_predicate(&mut self, pred: &'a WherePredicate) {
343 if pred.is_placeholder {
344 self.visit_macro_invoc(pred.id);
345 self.visit_invoc(pred.id);
346 } else {
347 visit::walk_where_predicate(self, pred)
348 }
349 }
350
351 fn visit_variant_data(&mut self, data: &'a VariantData) {
352 for (index, field) in data.fields().iter().enumerate() {
356 self.collect_field(field, Some(index));
357 }
358 }
359
360 fn visit_generic_param(&mut self, param: &'a GenericParam) {
361 if param.is_placeholder {
362 self.visit_macro_invoc(param.id);
363 self.visit_invoc(param.id);
364 return;
365 }
366 let def_kind = match param.kind {
367 GenericParamKind::Lifetime { .. } => DefKind::LifetimeParam,
368 GenericParamKind::Type { .. } => DefKind::TyParam,
369 GenericParamKind::Const { .. } => DefKind::ConstParam,
370 };
371 self.create_def(param.id, Some(param.ident.name), def_kind, param.ident.span);
372
373 self.with_impl_trait(ImplTraitContext::Universal, |this| {
380 visit::walk_generic_param(this, param)
381 });
382 }
383
384 fn visit_assoc_item(&mut self, i: &'a AssocItem, ctxt: visit::AssocCtxt) {
385 let (ident, def_kind, ns) = match &i.kind {
386 AssocItemKind::Fn(Fn { ident, .. })
387 | AssocItemKind::Delegation(Delegation { ident, .. }) => {
388 (*ident, DefKind::AssocFn, ValueNS)
389 }
390 AssocItemKind::Const(ConstItem { ident, kind, .. }) => (
391 *ident,
392 DefKind::AssocConst { is_type_const: *kind == ConstItemKind::TypeConst },
393 ValueNS,
394 ),
395 AssocItemKind::Type(TyAlias { ident, .. }) => (*ident, DefKind::AssocTy, TypeNS),
396 AssocItemKind::MacCall(..) => {
397 self.visit_macro_invoc(i.id);
398 self.visit_assoc_item_mac_call(i, ctxt);
399 return;
400 }
401 AssocItemKind::DelegationMac(..) => {
402 ::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")
403 }
404 };
405
406 self.with_owner(i.id, Some(ident.name), def_kind, i.span, |this, feed| {
407 this.with_parent(feed.def_id(), |this| {
408 this.brg_visit_assoc_item(i, ctxt, ident, ns, feed)
409 });
410 })
411 }
412
413 fn visit_pat(&mut self, pat: &'a Pat) {
414 match pat.kind {
415 PatKind::MacCall(..) => {
416 self.visit_macro_invoc(pat.id);
417 self.visit_invoc(pat.id);
418 }
419 _ => visit::walk_pat(self, pat),
420 }
421 }
422
423 fn visit_anon_const(&mut self, constant: &'a AnonConst) {
424 let parent =
425 self.create_def(constant.id, None, DefKind::AnonConst, constant.value.span).def_id();
426 self.with_parent(parent, |this| visit::walk_anon_const(this, constant));
427 }
428
429 #[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(429u32),
::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:431",
"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(431u32),
::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))]
430 fn visit_expr(&mut self, expr: &'a Expr) {
431 debug!(?self.invocation_parent);
432
433 match &expr.kind {
434 ExprKind::MacCall(..) => {
435 self.visit_macro_invoc(expr.id);
436 self.visit_invoc(expr.id);
437 }
438 ExprKind::Closure(..) | ExprKind::Gen(..) => {
439 let def = self.create_def(expr.id, None, DefKind::Closure, expr.span).def_id();
440 self.with_parent(def, |this| visit::walk_expr(this, expr));
441 }
442 _ => visit::walk_expr(self, expr),
443 }
444 }
445
446 fn visit_ty(&mut self, ty: &'a Ty) {
447 match ty.kind {
448 TyKind::MacCall(..) => {
449 self.visit_macro_invoc(ty.id);
450 self.visit_invoc(ty.id);
451 }
452 TyKind::ImplTrait(opaque_id, _) => {
453 let name = *self
454 .r
455 .impl_trait_names
456 .get(&ty.id)
457 .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"));
458 let kind = match self.invocation_parent.impl_trait_context {
459 ImplTraitContext::Universal => DefKind::TyParam,
460 ImplTraitContext::Existential => DefKind::OpaqueTy,
461 ImplTraitContext::InBinding => return visit::walk_ty(self, ty),
462 };
463 let id = self.create_def(opaque_id, Some(name), kind, ty.span).def_id();
464 match self.invocation_parent.impl_trait_context {
465 ImplTraitContext::Universal => visit::walk_ty(self, ty),
468 ImplTraitContext::Existential => {
469 self.with_parent(id, |this| visit::walk_ty(this, ty))
470 }
471 ImplTraitContext::InBinding => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
472 };
473 }
474 _ => visit::walk_ty(self, ty),
475 }
476 }
477
478 fn visit_stmt(&mut self, stmt: &'a Stmt) {
479 match stmt.kind {
480 StmtKind::MacCall(..) => {
481 self.brg_visit_mac_call_in_module(stmt.id);
482 self.visit_macro_invoc(stmt.id)
483 }
484 StmtKind::Let(ref local) => self.with_impl_trait(ImplTraitContext::InBinding, |this| {
489 visit::walk_local(this, local)
490 }),
491 _ => visit::walk_stmt(self, stmt),
492 }
493 }
494
495 fn visit_arm(&mut self, arm: &'a Arm) {
496 if arm.is_placeholder {
497 self.visit_macro_invoc(arm.id);
498 self.visit_invoc(arm.id);
499 } else {
500 visit::walk_arm(self, arm)
501 }
502 }
503
504 fn visit_expr_field(&mut self, f: &'a ExprField) {
505 if f.is_placeholder {
506 self.visit_macro_invoc(f.id);
507 self.visit_invoc(f.id);
508 } else {
509 visit::walk_expr_field(self, f)
510 }
511 }
512
513 fn visit_pat_field(&mut self, fp: &'a PatField) {
514 if fp.is_placeholder {
515 self.visit_macro_invoc(fp.id);
516 self.visit_invoc(fp.id);
517 } else {
518 visit::walk_pat_field(self, fp)
519 }
520 }
521
522 fn visit_param(&mut self, p: &'a Param) {
523 if p.is_placeholder {
524 self.visit_macro_invoc(p.id);
525 self.visit_invoc(p.id);
526 } else {
527 self.with_impl_trait(ImplTraitContext::Universal, |this| visit::walk_param(this, p))
528 }
529 }
530
531 fn visit_field_def(&mut self, field: &'a FieldDef) {
534 self.collect_field(field, None);
535 }
536
537 fn visit_crate(&mut self, krate: &'a Crate) {
538 if krate.is_placeholder {
539 self.visit_macro_invoc(krate.id);
540 self.visit_invoc_in_module(krate.id);
541 } else {
542 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);
550
551 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);
552 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);
553 self.contains_macro_use(&krate.attrs);
554 }
555 }
556
557 fn visit_attribute(&mut self, attr: &'a Attribute) {
558 use SyntheticAttr::*;
559 let orig_in_attr = mem::replace(&mut self.invocation_parent.in_attr, true);
560 match &attr.kind {
561 AttrKind::Normal(normal) => {
562 if attr::is_builtin_attr(&normal.item) {
563 self.r
564 .builtin_attrs
565 .push((normal.item.path.segments[0].ident, self.parent_scope));
566 }
567 }
568 AttrKind::Synthetic(CfgTrace(_) | CfgAttrTrace(_)) => {}
569 AttrKind::DocComment(..) => {}
570 }
571 visit::walk_attribute(self, attr);
572 self.invocation_parent.in_attr = orig_in_attr;
573 }
574
575 fn visit_inline_asm(&mut self, asm: &'a InlineAsm) {
576 let InlineAsm {
577 asm_macro: _,
578 template: _,
579 template_strs: _,
580 operands,
581 clobber_abis: _,
582 options: _,
583 line_spans: _,
584 } = asm;
585 for (op, _span) in operands {
586 match op {
587 InlineAsmOperand::In { expr, reg: _ }
588 | InlineAsmOperand::Out { expr: Some(expr), reg: _, late: _ }
589 | InlineAsmOperand::InOut { expr, reg: _, late: _ } => {
590 self.visit_expr(expr);
591 }
592 InlineAsmOperand::Out { expr: None, reg: _, late: _ } => {}
593 InlineAsmOperand::SplitInOut { in_expr, out_expr, reg: _, late: _ } => {
594 self.visit_expr(in_expr);
595 if let Some(expr) = out_expr {
596 self.visit_expr(expr);
597 }
598 }
599 InlineAsmOperand::Const { anon_const } => {
600 let def = self
601 .create_def(anon_const.id, None, DefKind::AnonConst, anon_const.value.span)
602 .def_id();
603 self.with_parent(def, |this| visit::walk_anon_const(this, anon_const));
604 }
605 InlineAsmOperand::Sym { sym } => self.visit_inline_asm_sym(sym),
606 InlineAsmOperand::Label { block } => self.visit_block(block),
607 }
608 }
609 }
610}