1use rustc_abi::ExternAbi;
6use rustc_ast::visit::{VisitorResult, walk_list};
7use rustc_data_structures::fingerprint::Fingerprint;
8use rustc_data_structures::stable_hash::{StableHash, StableHasher};
9use rustc_data_structures::steal::Steal;
10use rustc_data_structures::svh::Svh;
11use rustc_data_structures::sync::{DynSend, DynSync, par_for_each_in, try_par_for_each_in};
12use rustc_hir::def::{DefKind, Res};
13use rustc_hir::def_id::{DefId, LOCAL_CRATE, LocalDefId, LocalModId};
14use rustc_hir::definitions::{DefKey, DefPath, DefPathHash};
15use rustc_hir::intravisit::Visitor;
16use rustc_hir::lints::DelayedLints;
17use rustc_hir::*;
18use rustc_span::def_id::{CRATE_MOD_ID, StableCrateId};
19use rustc_span::{ErrorGuaranteed, Ident, Span, Symbol, kw, with_metavar_spans};
20
21use crate::hir::{ModuleItems, ProjectedMaybeOwner, nested_filter};
22use crate::middle::debugger_visualizer::DebuggerVisualizerFile;
23use crate::query::{IntoQueryKey, LocalCrate};
24use crate::ty::{self, TyCtxt};
25
26struct ParentHirIterator<'tcx> {
29 current_id: HirId,
30 tcx: TyCtxt<'tcx>,
31 current_owner_nodes: Option<&'tcx OwnerNodes<'tcx>>,
34}
35
36impl<'tcx> ParentHirIterator<'tcx> {
37 fn new(tcx: TyCtxt<'tcx>, current_id: HirId) -> ParentHirIterator<'tcx> {
38 ParentHirIterator { current_id, tcx, current_owner_nodes: None }
39 }
40}
41
42impl<'tcx> Iterator for ParentHirIterator<'tcx> {
43 type Item = HirId;
44
45 fn next(&mut self) -> Option<Self::Item> {
46 if self.current_id == CRATE_HIR_ID {
47 return None;
48 }
49
50 let HirId { owner, local_id } = self.current_id;
51
52 let parent_id = if local_id == ItemLocalId::ZERO {
53 self.current_owner_nodes = None;
55 self.tcx.hir_owner_parent(owner)
56 } else {
57 let owner_nodes =
58 self.current_owner_nodes.get_or_insert_with(|| self.tcx.hir_owner_nodes(owner));
59 let parent_local_id = owner_nodes.nodes[local_id].parent;
60 if true {
{
match (&parent_local_id, &local_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!(parent_local_id, local_id);
62 HirId { owner, local_id: parent_local_id }
63 };
64
65 if true {
{
match (&parent_id, &self.current_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!(parent_id, self.current_id);
66
67 self.current_id = parent_id;
68 Some(parent_id)
69 }
70}
71
72pub struct ParentOwnerIterator<'tcx> {
75 current_id: HirId,
76 tcx: TyCtxt<'tcx>,
77}
78
79impl<'tcx> Iterator for ParentOwnerIterator<'tcx> {
80 type Item = (OwnerId, OwnerNode<'tcx>);
81
82 fn next(&mut self) -> Option<Self::Item> {
83 if self.current_id.local_id.index() != 0 {
84 self.current_id.local_id = ItemLocalId::ZERO;
85 let node = self.tcx.hir_owner_node(self.current_id.owner);
86 return Some((self.current_id.owner, node));
87 }
88 if self.current_id == CRATE_HIR_ID {
89 return None;
90 }
91
92 let parent_id = self.tcx.hir_def_key(self.current_id.owner.def_id).parent;
93 let parent_id = parent_id.map_or(CRATE_OWNER_ID, |local_def_index| {
94 let def_id = LocalDefId { local_def_index };
95 self.tcx.local_def_id_to_hir_id(def_id).owner
96 });
97 self.current_id = HirId::make_owner(parent_id.def_id);
98
99 let node = self.tcx.hir_owner_node(self.current_id.owner);
100 Some((self.current_id.owner, node))
101 }
102}
103
104impl<'tcx> TyCtxt<'tcx> {
105 #[inline]
106 pub fn local_def_id_to_hir_id(self, def_id: impl IntoQueryKey<LocalDefId>) -> HirId {
107 let def_id = def_id.into_query_key();
108 match self.hir_owner(def_id) {
109 ProjectedMaybeOwner::Owner(_) => HirId::make_owner(def_id),
110 ProjectedMaybeOwner::NonOwner(hir_id) => hir_id,
111 }
112 }
113
114 #[inline]
118 pub fn opt_ast_lowering_delayed_lints(self, id: OwnerId) -> Option<&'tcx Steal<DelayedLints>> {
119 self.dep_graph.assert_eval_always();
120 self.hir_owner(id.def_id).as_owner().map(|o| o.delayed_lints)
121 }
122
123 #[inline]
124 pub fn in_scope_traits_map(
125 self,
126 id: OwnerId,
127 ) -> Option<&'tcx ItemLocalMap<&'tcx [TraitCandidate<'tcx>]>> {
128 self.hir_owner(id.def_id).as_owner().map(|o| o.trait_map)
129 }
130
131 #[inline]
132 pub fn opt_hir_owner_nodes(self, def_id: LocalDefId) -> Option<&'tcx OwnerNodes<'tcx>> {
133 self.hir_owner(def_id).as_owner().map(|o| o.nodes)
134 }
135
136 #[inline]
137 fn expect_hir_owner_nodes(self, def_id: LocalDefId) -> &'tcx OwnerNodes<'tcx> {
138 self.opt_hir_owner_nodes(def_id)
139 .unwrap_or_else(|| crate::util::bug::span_bug_fmt(self.def_span(def_id),
format_args!("{0:?} is not an owner", def_id))span_bug!(self.def_span(def_id), "{def_id:?} is not an owner"))
140 }
141
142 #[inline]
143 pub fn hir_owner_nodes(self, owner_id: OwnerId) -> &'tcx OwnerNodes<'tcx> {
144 self.expect_hir_owner_nodes(owner_id.def_id)
145 }
146
147 #[inline]
148 fn opt_hir_owner_node(self, def_id: LocalDefId) -> Option<OwnerNode<'tcx>> {
149 self.opt_hir_owner_nodes(def_id).map(|nodes| nodes.node())
150 }
151
152 #[inline]
153 pub fn expect_hir_owner_node(self, def_id: LocalDefId) -> OwnerNode<'tcx> {
154 self.expect_hir_owner_nodes(def_id).node()
155 }
156
157 #[inline]
158 pub fn hir_owner_node(self, owner_id: OwnerId) -> OwnerNode<'tcx> {
159 self.hir_owner_nodes(owner_id).node()
160 }
161
162 pub fn hir_node(self, id: HirId) -> Node<'tcx> {
164 self.hir_owner_nodes(id.owner).nodes[id.local_id].node
165 }
166
167 #[inline]
169 pub fn hir_node_by_def_id(self, id: LocalDefId) -> Node<'tcx> {
170 self.hir_node(self.local_def_id_to_hir_id(id))
171 }
172
173 pub fn parent_hir_id(self, hir_id: HirId) -> HirId {
178 let HirId { owner, local_id } = hir_id;
179 if local_id == ItemLocalId::ZERO {
180 self.hir_owner_parent(owner)
181 } else {
182 let parent_local_id = self.hir_owner_nodes(owner).nodes[local_id].parent;
183 if true {
{
match (&parent_local_id, &local_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!(parent_local_id, local_id);
185 HirId { owner, local_id: parent_local_id }
186 }
187 }
188
189 pub fn parent_hir_node(self, hir_id: HirId) -> Node<'tcx> {
192 self.hir_node(self.parent_hir_id(hir_id))
193 }
194
195 #[inline]
196 pub fn hir_root_module(self) -> &'tcx Mod<'tcx> {
197 match self.hir_owner_node(CRATE_OWNER_ID) {
198 OwnerNode::Crate(item) => item,
199 _ => crate::util::bug::bug_fmt(format_args!("impossible case reached"))bug!(),
200 }
201 }
202
203 #[inline]
204 pub fn hir_free_items(self) -> impl Iterator<Item = ItemId> {
205 self.hir_crate_items(()).free_items.iter().copied()
206 }
207
208 #[inline]
209 pub fn hir_module_free_items(self, module: LocalModId) -> impl Iterator<Item = ItemId> {
210 self.hir_module_items(module).free_items()
211 }
212
213 pub fn hir_def_key(self, def_id: LocalDefId) -> DefKey {
214 self.definitions_untracked().def_key(def_id)
216 }
217
218 pub fn hir_def_path(self, def_id: LocalDefId) -> DefPath {
219 self.definitions_untracked().def_path(def_id)
221 }
222
223 #[inline]
224 pub fn hir_def_path_hash(self, def_id: LocalDefId) -> DefPathHash {
225 self.definitions_untracked().def_path_hash(def_id)
227 }
228
229 pub fn hir_get_if_local(self, id: DefId) -> Option<Node<'tcx>> {
230 id.as_local().map(|id| self.hir_node_by_def_id(id))
231 }
232
233 pub fn hir_get_generics(self, id: LocalDefId) -> Option<&'tcx Generics<'tcx>> {
234 self.opt_hir_owner_node(id)?.generics()
235 }
236
237 pub fn hir_item(self, id: ItemId) -> &'tcx Item<'tcx> {
238 self.hir_owner_node(id.owner_id).expect_item()
239 }
240
241 pub fn hir_trait_item(self, id: TraitItemId) -> &'tcx TraitItem<'tcx> {
242 self.hir_owner_node(id.owner_id).expect_trait_item()
243 }
244
245 pub fn hir_impl_item(self, id: ImplItemId) -> &'tcx ImplItem<'tcx> {
246 self.hir_owner_node(id.owner_id).expect_impl_item()
247 }
248
249 pub fn hir_foreign_item(self, id: ForeignItemId) -> &'tcx ForeignItem<'tcx> {
250 self.hir_owner_node(id.owner_id).expect_foreign_item()
251 }
252
253 pub fn hir_body(self, id: BodyId) -> &'tcx Body<'tcx> {
254 self.hir_owner_nodes(id.hir_id.owner).bodies[&id.hir_id.local_id]
255 }
256
257 #[track_caller]
258 pub fn hir_fn_decl_by_hir_id(self, hir_id: HirId) -> Option<&'tcx FnDecl<'tcx>> {
259 self.hir_node(hir_id).fn_decl()
260 }
261
262 #[track_caller]
263 pub fn hir_fn_sig_by_hir_id(self, hir_id: HirId) -> Option<&'tcx FnSig<'tcx>> {
264 self.hir_node(hir_id).fn_sig()
265 }
266
267 #[track_caller]
268 pub fn hir_enclosing_body_owner(self, hir_id: HirId) -> LocalDefId {
269 for (_, node) in self.hir_parent_iter(hir_id) {
270 if let Some((def_id, _)) = node.associated_body() {
271 return def_id;
272 }
273 }
274
275 crate::util::bug::bug_fmt(format_args!("no `hir_enclosing_body_owner` for hir_id `{0}`",
hir_id));bug!("no `hir_enclosing_body_owner` for hir_id `{}`", hir_id);
276 }
277
278 pub fn hir_body_owner(self, BodyId { hir_id }: BodyId) -> HirId {
282 let parent = self.parent_hir_id(hir_id);
283 {
match (&self.hir_node(parent).body_id().unwrap().hir_id, &hir_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::Some(format_args!("{0:?}",
hir_id)));
}
}
}
};assert_eq!(self.hir_node(parent).body_id().unwrap().hir_id, hir_id, "{hir_id:?}");
284 parent
285 }
286
287 pub fn hir_body_owner_def_id(self, BodyId { hir_id }: BodyId) -> LocalDefId {
288 self.parent_hir_node(hir_id).associated_body().unwrap().0
289 }
290
291 pub fn hir_maybe_body_owned_by(self, id: LocalDefId) -> Option<&'tcx Body<'tcx>> {
294 Some(self.hir_body(self.hir_node_by_def_id(id).body_id()?))
295 }
296
297 #[track_caller]
299 pub fn hir_body_owned_by(self, id: LocalDefId) -> &'tcx Body<'tcx> {
300 self.hir_maybe_body_owned_by(id).unwrap_or_else(|| {
301 let hir_id = self.local_def_id_to_hir_id(id);
302 crate::util::bug::span_bug_fmt(self.hir_span(hir_id),
format_args!("body_owned_by: {0} has no associated body",
self.hir_id_to_string(hir_id)));span_bug!(
303 self.hir_span(hir_id),
304 "body_owned_by: {} has no associated body",
305 self.hir_id_to_string(hir_id)
306 );
307 })
308 }
309
310 pub fn hir_body_param_idents(self, id: BodyId) -> impl Iterator<Item = Option<Ident>> {
311 self.hir_body(id).params.iter().map(|param| match param.pat.kind {
312 PatKind::Binding(_, _, ident, _) => Some(ident),
313 PatKind::Wild => Some(Ident::new(kw::Underscore, param.pat.span)),
314 _ => None,
315 })
316 }
317
318 pub fn hir_body_owner_kind(self, def_id: impl Into<DefId>) -> BodyOwnerKind {
322 let def_id = def_id.into();
323 match self.def_kind(def_id) {
324 DefKind::Const { .. } | DefKind::AssocConst { .. } => {
325 BodyOwnerKind::Const { inline: false }
326 }
327 DefKind::AnonConst => BodyOwnerKind::Const {
328 inline: self.anon_const_kind(def_id) == ty::AnonConstKind::NonTypeSystemInline,
329 },
330 DefKind::Ctor(..) | DefKind::Fn | DefKind::AssocFn => BodyOwnerKind::Fn,
331 DefKind::Closure | DefKind::SyntheticCoroutineBody => BodyOwnerKind::Closure,
332 DefKind::Static { safety: _, mutability, nested: false } => {
333 BodyOwnerKind::Static(mutability)
334 }
335 DefKind::GlobalAsm => BodyOwnerKind::GlobalAsm,
336 dk => crate::util::bug::bug_fmt(format_args!("{0:?} is not a body node: {1:?}",
def_id, dk))bug!("{:?} is not a body node: {:?}", def_id, dk),
337 }
338 }
339
340 pub fn hir_body_const_context(self, local_def_id: LocalDefId) -> Option<ConstContext> {
348 let def_id = local_def_id.into();
349 let ccx = match self.hir_body_owner_kind(def_id) {
350 BodyOwnerKind::Const { inline } => {
351 ConstContext::Const { allow_const_fn_promotion: !inline }
352 }
353 BodyOwnerKind::Static(mutability) => ConstContext::Static(mutability),
354
355 BodyOwnerKind::Fn if self.is_constructor(def_id) => return None,
356 BodyOwnerKind::Fn | BodyOwnerKind::Closure if self.is_const_fn(def_id) => {
357 if #[allow(non_exhaustive_omitted_patterns)] match self.constness(def_id) {
rustc_hir::Constness::Const { always: true } => true,
_ => false,
}matches!(self.constness(def_id), rustc_hir::Constness::Const { always: true }) {
358 ConstContext::Const { allow_const_fn_promotion: false }
359 } else {
360 ConstContext::ConstFn
361 }
362 }
363 BodyOwnerKind::Fn | BodyOwnerKind::Closure | BodyOwnerKind::GlobalAsm => return None,
364 };
365
366 Some(ccx)
367 }
368
369 #[inline]
372 pub fn hir_body_owners(self) -> impl Iterator<Item = LocalDefId> {
373 self.hir_crate_items(()).body_owners.iter().copied()
374 }
375
376 #[inline]
377 pub fn par_hir_body_owners(self, f: impl Fn(LocalDefId) + DynSend + DynSync) {
378 par_for_each_in(&self.hir_crate_items(()).body_owners[..], |&&def_id| f(def_id));
379 }
380
381 pub fn hir_ty_param_owner(self, def_id: LocalDefId) -> LocalDefId {
382 let def_kind = self.def_kind(def_id);
383 match def_kind {
384 DefKind::Trait | DefKind::TraitAlias => def_id,
385 DefKind::LifetimeParam | DefKind::TyParam | DefKind::ConstParam => {
386 self.local_parent(def_id)
387 }
388 _ => crate::util::bug::bug_fmt(format_args!("ty_param_owner: {0:?} is a {1:?} not a type parameter",
def_id, def_kind))bug!("ty_param_owner: {:?} is a {:?} not a type parameter", def_id, def_kind),
389 }
390 }
391
392 pub fn hir_ty_param_name(self, def_id: LocalDefId) -> Symbol {
393 let def_kind = self.def_kind(def_id);
394 match def_kind {
395 DefKind::Trait | DefKind::TraitAlias => kw::SelfUpper,
396 DefKind::LifetimeParam | DefKind::TyParam | DefKind::ConstParam => {
397 self.item_name(def_id.to_def_id())
398 }
399 _ => crate::util::bug::bug_fmt(format_args!("ty_param_name: {0:?} is a {1:?} not a type parameter",
def_id, def_kind))bug!("ty_param_name: {:?} is a {:?} not a type parameter", def_id, def_kind),
400 }
401 }
402
403 pub fn hir_krate_attrs(self) -> &'tcx [Attribute] {
407 self.hir_attrs(CRATE_HIR_ID)
408 }
409
410 pub fn hir_rustc_coherence_is_core(self) -> bool {
411 {
{
'done:
{
for i in self.hir_krate_attrs() {
#[allow(unused_imports)]
use ::rustc_attr_ir::AttributeKind::*;
let i: &::rustc_attr_ir::Attribute = i;
match i {
::rustc_attr_ir::Attribute::Parsed(RustcCoherenceIsCore) =>
{
break 'done Some(());
}
::rustc_attr_ir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}.is_some()
}find_attr!(self.hir_krate_attrs(), RustcCoherenceIsCore)
412 }
413
414 pub fn hir_get_module(self, module: LocalModId) -> (&'tcx Mod<'tcx>, Span, HirId) {
415 let hir_id = HirId::make_owner(module.to_local_def_id());
416 match self.hir_owner_node(hir_id.owner) {
417 OwnerNode::Item(&Item { span, kind: ItemKind::Mod(_, m), .. }) => (m, span, hir_id),
418 OwnerNode::Crate(item) => (item, item.spans.inner_span, hir_id),
419 node => { ::core::panicking::panic_fmt(format_args!("not a module: {0:?}", node)); }panic!("not a module: {node:?}"),
420 }
421 }
422
423 pub fn hir_walk_toplevel_module<V>(self, visitor: &mut V) -> V::Result
425 where
426 V: Visitor<'tcx>,
427 {
428 let (top_mod, span, hir_id) = self.hir_get_module(CRATE_MOD_ID);
429 visitor.visit_mod(top_mod, span, hir_id)
430 }
431
432 pub fn hir_walk_attributes<V>(self, visitor: &mut V) -> V::Result
434 where
435 V: Visitor<'tcx>,
436 {
437 let krate = self.hir_crate_items(());
438 for owner in krate.owners() {
439 let attrs = self.hir_attr_map(owner);
440 for attrs in attrs.map.values() {
441 for elem in *attrs {
match ::rustc_ast_ir::visit::VisitorResult::branch(visitor.visit_attribute(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(visitor, visit_attribute, *attrs);
442 }
443 }
444 V::Result::output()
445 }
446
447 pub fn hir_visit_all_item_likes_in_crate<V>(self, visitor: &mut V) -> V::Result
458 where
459 V: Visitor<'tcx>,
460 {
461 let krate = self.hir_crate_items(());
462 for elem in krate.free_items().map(|id| self.hir_item(id)) {
match ::rustc_ast_ir::visit::VisitorResult::branch(visitor.visit_item(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(visitor, visit_item, krate.free_items().map(|id| self.hir_item(id)));
463 for elem in krate.trait_items().map(|id| self.hir_trait_item(id)) {
match ::rustc_ast_ir::visit::VisitorResult::branch(visitor.visit_trait_item(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(
464 visitor,
465 visit_trait_item,
466 krate.trait_items().map(|id| self.hir_trait_item(id))
467 );
468 for elem in krate.impl_items().map(|id| self.hir_impl_item(id)) {
match ::rustc_ast_ir::visit::VisitorResult::branch(visitor.visit_impl_item(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(visitor, visit_impl_item, krate.impl_items().map(|id| self.hir_impl_item(id)));
469 for elem in krate.foreign_items().map(|id| self.hir_foreign_item(id)) {
match ::rustc_ast_ir::visit::VisitorResult::branch(visitor.visit_foreign_item(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(
470 visitor,
471 visit_foreign_item,
472 krate.foreign_items().map(|id| self.hir_foreign_item(id))
473 );
474 V::Result::output()
475 }
476
477 pub fn hir_visit_item_likes_in_module<V>(self, module: LocalModId, visitor: &mut V) -> V::Result
480 where
481 V: Visitor<'tcx>,
482 {
483 let module = self.hir_module_items(module);
484 for elem in module.free_items().map(|id| self.hir_item(id)) {
match ::rustc_ast_ir::visit::VisitorResult::branch(visitor.visit_item(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(visitor, visit_item, module.free_items().map(|id| self.hir_item(id)));
485 for elem in module.trait_items().map(|id| self.hir_trait_item(id)) {
match ::rustc_ast_ir::visit::VisitorResult::branch(visitor.visit_trait_item(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(
486 visitor,
487 visit_trait_item,
488 module.trait_items().map(|id| self.hir_trait_item(id))
489 );
490 for elem in module.impl_items().map(|id| self.hir_impl_item(id)) {
match ::rustc_ast_ir::visit::VisitorResult::branch(visitor.visit_impl_item(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(visitor, visit_impl_item, module.impl_items().map(|id| self.hir_impl_item(id)));
491 for elem in module.foreign_items().map(|id| self.hir_foreign_item(id)) {
match ::rustc_ast_ir::visit::VisitorResult::branch(visitor.visit_foreign_item(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(
492 visitor,
493 visit_foreign_item,
494 module.foreign_items().map(|id| self.hir_foreign_item(id))
495 );
496 V::Result::output()
497 }
498
499 pub fn hir_for_each_module(self, mut f: impl FnMut(LocalModId)) {
500 let crate_items = self.hir_crate_items(());
501 for &module in crate_items.submodules.iter() {
502 f(module)
503 }
504 }
505
506 #[inline]
507 pub fn par_hir_for_each_module(self, f: impl Fn(LocalModId) + DynSend + DynSync) {
508 let crate_items = self.hir_crate_items(());
509 par_for_each_in(&crate_items.submodules[..], |&&module| f(module));
510 }
511
512 #[inline]
513 pub fn try_par_hir_for_each_module(
514 self,
515 f: impl Fn(LocalModId) -> Result<(), ErrorGuaranteed> + DynSend + DynSync,
516 ) -> Result<(), ErrorGuaranteed> {
517 let crate_items = self.hir_crate_items(());
518 try_par_for_each_in(&crate_items.submodules[..], |&&module| f(module))
519 }
520
521 #[inline]
524 pub fn hir_parent_id_iter(self, current_id: HirId) -> impl Iterator<Item = HirId> {
525 ParentHirIterator::new(self, current_id)
526 }
527
528 #[inline]
531 pub fn hir_parent_iter(self, current_id: HirId) -> impl Iterator<Item = (HirId, Node<'tcx>)> {
532 self.hir_parent_id_iter(current_id).map(move |id| (id, self.hir_node(id)))
533 }
534
535 #[inline]
538 pub fn hir_parent_owner_iter(self, current_id: HirId) -> ParentOwnerIterator<'tcx> {
539 ParentOwnerIterator { current_id, tcx: self }
540 }
541
542 pub fn hir_is_lhs(self, id: HirId) -> bool {
544 match self.parent_hir_node(id) {
545 Node::Expr(expr) => match expr.kind {
546 ExprKind::Assign(lhs, _rhs, _span) => lhs.hir_id == id,
547 _ => false,
548 },
549 _ => false,
550 }
551 }
552
553 pub fn hir_is_inside_const_context(self, hir_id: HirId) -> bool {
556 self.hir_body_const_context(self.hir_enclosing_body_owner(hir_id)).is_some()
557 }
558
559 pub fn hir_get_fn_id_for_return_block(self, id: HirId) -> Option<HirId> {
586 let enclosing_body_owner = self.local_def_id_to_hir_id(self.hir_enclosing_body_owner(id));
587
588 let mut iter = [id].into_iter().chain(self.hir_parent_id_iter(id)).peekable();
590 while let Some(cur_id) = iter.next() {
591 if enclosing_body_owner == cur_id {
592 break;
593 }
594
595 if let Node::Expr(Expr { kind: ExprKind::Ret(_), .. }) = self.hir_node(cur_id) {
598 break;
599 }
600
601 if let Some(&parent_id) = iter.peek() {
604 match self.hir_node(parent_id) {
605 Node::Block(Block { expr: Some(e), .. }) if cur_id != e.hir_id => return None,
608 Node::Block(Block { expr: Some(e), .. })
609 if #[allow(non_exhaustive_omitted_patterns)] match e.kind {
ExprKind::If(_, _, None) => true,
_ => false,
}matches!(e.kind, ExprKind::If(_, _, None)) =>
610 {
611 return None;
612 }
613
614 Node::Block(Block { expr: None, .. })
617 | Node::Expr(Expr { kind: ExprKind::Loop(..), .. })
618 | Node::LetStmt(..) => return None,
619
620 _ => {}
621 }
622 }
623 }
624
625 Some(enclosing_body_owner)
626 }
627
628 pub fn hir_get_parent_item(self, hir_id: HirId) -> OwnerId {
633 if hir_id.local_id != ItemLocalId::ZERO {
634 hir_id.owner
636 } else if let Some((def_id, _node)) = self.hir_parent_owner_iter(hir_id).next() {
637 def_id
638 } else {
639 CRATE_OWNER_ID
640 }
641 }
642
643 pub fn hir_get_if_cause(self, hir_id: HirId) -> Option<&'tcx Expr<'tcx>> {
649 for (_, node) in self.hir_parent_iter(hir_id) {
650 match node {
651 Node::Item(_)
652 | Node::ForeignItem(_)
653 | Node::TraitItem(_)
654 | Node::ImplItem(_)
655 | Node::Stmt(Stmt { kind: StmtKind::Let(_), .. }) => break,
656 Node::Expr(expr @ Expr { kind: ExprKind::If(..) | ExprKind::Match(..), .. }) => {
657 return Some(expr);
658 }
659 _ => {}
660 }
661 }
662 None
663 }
664
665 pub fn hir_get_enclosing_scope(self, hir_id: HirId) -> Option<HirId> {
667 for (hir_id, node) in self.hir_parent_iter(hir_id) {
668 if let Node::Item(Item {
669 kind:
670 ItemKind::Fn { .. }
671 | ItemKind::Const(..)
672 | ItemKind::Static(..)
673 | ItemKind::Mod(..)
674 | ItemKind::Enum(..)
675 | ItemKind::Struct(..)
676 | ItemKind::Union(..)
677 | ItemKind::Trait { .. }
678 | ItemKind::Impl { .. },
679 ..
680 })
681 | Node::ForeignItem(ForeignItem { kind: ForeignItemKind::Fn(..), .. })
682 | Node::TraitItem(TraitItem { kind: TraitItemKind::Fn(..), .. })
683 | Node::ImplItem(ImplItem { kind: ImplItemKind::Fn(..), .. })
684 | Node::Block(_) = node
685 {
686 return Some(hir_id);
687 }
688 }
689 None
690 }
691
692 pub fn hir_get_defining_scope(self, id: HirId) -> HirId {
694 let mut scope = id;
695 loop {
696 scope = self.hir_get_enclosing_scope(scope).unwrap_or(CRATE_HIR_ID);
697 if scope == CRATE_HIR_ID || !#[allow(non_exhaustive_omitted_patterns)] match self.hir_node(scope) {
Node::Block(_) => true,
_ => false,
}matches!(self.hir_node(scope), Node::Block(_)) {
698 return scope;
699 }
700 }
701 }
702
703 pub fn hir_id_to_string(self, id: HirId) -> String {
706 let path_str = |def_id: LocalDefId| self.def_path_str(def_id);
707
708 let span_str =
709 || self.sess.source_map().span_to_snippet(self.hir_span(id)).unwrap_or_default();
710 let node_str = |prefix| ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{1} ({2} `{0}`)", span_str(), id,
prefix))
})format!("{id} ({prefix} `{}`)", span_str());
711
712 match self.hir_node(id) {
713 Node::Item(item) => {
714 let item_str = match item.kind {
715 ItemKind::ExternCrate(..) => "extern crate",
716 ItemKind::Use(..) => "use",
717 ItemKind::Static(..) => "static",
718 ItemKind::Const(..) => "const",
719 ItemKind::Fn { .. } => "fn",
720 ItemKind::Macro(..) => "macro",
721 ItemKind::Mod(..) => "mod",
722 ItemKind::ForeignMod { .. } => "foreign mod",
723 ItemKind::GlobalAsm { .. } => "global asm",
724 ItemKind::TyAlias(..) => "ty",
725 ItemKind::Enum(..) => "enum",
726 ItemKind::Struct(..) => "struct",
727 ItemKind::Union(..) => "union",
728 ItemKind::Trait { .. } => "trait",
729 ItemKind::TraitAlias(..) => "trait alias",
730 ItemKind::Impl { .. } => "impl",
731 ItemKind::TestBinderConstraints { .. } => "test_binder_constraints!",
732 };
733 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{1} ({2} {0})",
path_str(item.owner_id.def_id), id, item_str))
})format!("{id} ({item_str} {})", path_str(item.owner_id.def_id))
734 }
735 Node::ForeignItem(item) => {
736 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{1} (foreign item {0})",
path_str(item.owner_id.def_id), id))
})format!("{id} (foreign item {})", path_str(item.owner_id.def_id))
737 }
738 Node::ImplItem(ii) => {
739 let kind = match ii.kind {
740 ImplItemKind::Const(..) => "associated constant",
741 ImplItemKind::Fn(fn_sig, _) => match fn_sig.decl.implicit_self() {
742 ImplicitSelfKind::None => "associated function",
743 _ => "method",
744 },
745 ImplItemKind::Type(_) => "associated type",
746 };
747 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{2} ({3} `{0}` in {1})", ii.ident,
path_str(ii.owner_id.def_id), id, kind))
})format!("{id} ({kind} `{}` in {})", ii.ident, path_str(ii.owner_id.def_id))
748 }
749 Node::TraitItem(ti) => {
750 let kind = match ti.kind {
751 TraitItemKind::Const(..) => "associated constant",
752 TraitItemKind::Fn(fn_sig, _) => match fn_sig.decl.implicit_self() {
753 ImplicitSelfKind::None => "associated function",
754 _ => "trait method",
755 },
756 TraitItemKind::Type(..) => "associated type",
757 };
758
759 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{2} ({3} `{0}` in {1})", ti.ident,
path_str(ti.owner_id.def_id), id, kind))
})format!("{id} ({kind} `{}` in {})", ti.ident, path_str(ti.owner_id.def_id))
760 }
761 Node::Variant(variant) => {
762 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{2} (variant `{0}` in {1})",
variant.ident, path_str(variant.def_id), id))
})format!("{id} (variant `{}` in {})", variant.ident, path_str(variant.def_id))
763 }
764 Node::Field(field) => {
765 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{2} (field `{0}` in {1})",
field.ident, path_str(field.def_id), id))
})format!("{id} (field `{}` in {})", field.ident, path_str(field.def_id))
766 }
767 Node::AnonConst(_) => node_str("const"),
768 Node::ConstBlock(_) => node_str("const"),
769 Node::ConstArg(_) => node_str("const"),
770 Node::Expr(_) => node_str("expr"),
771 Node::ExprField(_) => node_str("expr field"),
772 Node::ConstArgExprField(_) => node_str("const arg expr field"),
773 Node::Stmt(_) => node_str("stmt"),
774 Node::PathSegment(_) => node_str("path segment"),
775 Node::Ty(_) => node_str("type"),
776 Node::AssocItemConstraint(_) => node_str("assoc item constraint"),
777 Node::TraitRef(_) => node_str("trait ref"),
778 Node::OpaqueTy(_) => node_str("opaque type"),
779 Node::Pat(_) => node_str("pat"),
780 Node::TyPat(_) => node_str("pat ty"),
781 Node::PatField(_) => node_str("pattern field"),
782 Node::PatExpr(_) => node_str("pattern literal"),
783 Node::Param(_) => node_str("param"),
784 Node::Arm(_) => node_str("arm"),
785 Node::Block(_) => node_str("block"),
786 Node::Infer(_) => node_str("infer"),
787 Node::LetStmt(_) => node_str("local"),
788 Node::Ctor(ctor) => ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{1} (ctor {0})",
ctor.ctor_def_id().map_or("<missing path>".into(),
|def_id| path_str(def_id)), id))
})format!(
789 "{id} (ctor {})",
790 ctor.ctor_def_id().map_or("<missing path>".into(), |def_id| path_str(def_id)),
791 ),
792 Node::Lifetime(_) => node_str("lifetime"),
793 Node::GenericParam(param) => {
794 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{1} (generic_param {0})",
path_str(param.def_id), id))
})format!("{id} (generic_param {})", path_str(param.def_id))
795 }
796 Node::Crate(..) => String::from("(root_crate)"),
797 Node::WherePredicate(_) => node_str("where predicate"),
798 Node::PreciseCapturingNonLifetimeArg(_param) => node_str("parameter"),
799 Node::TestBinderForall(_) => node_str("forall"),
800 Node::TestBinderExists(_) => node_str("exists"),
801 Node::TestBinderBoundTypeConstraint(_) => node_str("test bound type constraint"),
802 Node::Synthetic => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
803 Node::Err(_) => node_str("error"),
804 }
805 }
806
807 pub fn hir_get_foreign_abi(self, hir_id: HirId) -> ExternAbi {
808 let parent = self.hir_get_parent_item(hir_id);
809 if let OwnerNode::Item(Item { kind: ItemKind::ForeignMod { abi, .. }, .. }) =
810 self.hir_owner_node(parent)
811 {
812 return *abi;
813 }
814 crate::util::bug::bug_fmt(format_args!("expected foreign mod or inlined parent, found {0}",
self.hir_id_to_string(HirId::make_owner(parent.def_id))))bug!(
815 "expected foreign mod or inlined parent, found {}",
816 self.hir_id_to_string(HirId::make_owner(parent.def_id))
817 )
818 }
819
820 pub fn hir_expect_item(self, id: LocalDefId) -> &'tcx Item<'tcx> {
821 match self.expect_hir_owner_node(id) {
822 OwnerNode::Item(item) => item,
823 _ => crate::util::bug::bug_fmt(format_args!("expected item, found {0}",
self.hir_id_to_string(HirId::make_owner(id))))bug!("expected item, found {}", self.hir_id_to_string(HirId::make_owner(id))),
824 }
825 }
826
827 pub fn hir_expect_impl_item(self, id: LocalDefId) -> &'tcx ImplItem<'tcx> {
828 match self.expect_hir_owner_node(id) {
829 OwnerNode::ImplItem(item) => item,
830 _ => crate::util::bug::bug_fmt(format_args!("expected impl item, found {0}",
self.hir_id_to_string(HirId::make_owner(id))))bug!("expected impl item, found {}", self.hir_id_to_string(HirId::make_owner(id))),
831 }
832 }
833
834 pub fn hir_expect_trait_item(self, id: LocalDefId) -> &'tcx TraitItem<'tcx> {
835 match self.expect_hir_owner_node(id) {
836 OwnerNode::TraitItem(item) => item,
837 _ => {
838 crate::util::bug::bug_fmt(format_args!("expected trait item, found {0}",
self.hir_id_to_string(HirId::make_owner(id))))bug!("expected trait item, found {}", self.hir_id_to_string(HirId::make_owner(id)))
839 }
840 }
841 }
842
843 pub fn hir_get_fn_output(self, def_id: LocalDefId) -> Option<&'tcx FnRetTy<'tcx>> {
844 Some(&self.opt_hir_owner_node(def_id)?.fn_decl()?.output)
845 }
846
847 #[track_caller]
848 pub fn hir_expect_opaque_ty(self, id: LocalDefId) -> &'tcx OpaqueTy<'tcx> {
849 match self.hir_node_by_def_id(id) {
850 Node::OpaqueTy(opaq) => opaq,
851 _ => {
852 crate::util::bug::bug_fmt(format_args!("expected opaque type definition, found {0}",
self.hir_id_to_string(self.local_def_id_to_hir_id(id))))bug!(
853 "expected opaque type definition, found {}",
854 self.hir_id_to_string(self.local_def_id_to_hir_id(id))
855 )
856 }
857 }
858 }
859
860 pub fn hir_expect_expr(self, id: HirId) -> &'tcx Expr<'tcx> {
861 match self.hir_node(id) {
862 Node::Expr(expr) => expr,
863 _ => crate::util::bug::bug_fmt(format_args!("expected expr, found {0}",
self.hir_id_to_string(id)))bug!("expected expr, found {}", self.hir_id_to_string(id)),
864 }
865 }
866
867 pub fn hir_opt_delegation_sig_id(self, def_id: LocalDefId) -> Option<DefId> {
868 self.opt_hir_owner_node(def_id)?.fn_decl()?.opt_delegation_sig_id()
869 }
870
871 pub fn hir_opt_delegation_info(self, def_id: LocalDefId) -> Option<&'tcx DelegationInfo> {
872 self.opt_hir_owner_node(def_id)?.fn_decl()?.opt_delegation_info()
873 }
874
875 pub fn hir_delegation_info(self, delegation_id: LocalDefId) -> &'tcx DelegationInfo {
876 self.hir_opt_delegation_info(delegation_id).expect("processing delegation")
877 }
878
879 #[inline]
880 fn hir_opt_ident(self, id: HirId) -> Option<Ident> {
881 match self.hir_node(id) {
882 Node::Pat(&Pat { kind: PatKind::Binding(_, _, ident, _), .. }) => Some(ident),
883 Node::Ctor(..) => match self.parent_hir_node(id) {
886 Node::Item(item) => Some(item.kind.ident().unwrap()),
887 Node::Variant(variant) => Some(variant.ident),
888 _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
889 },
890 node => node.ident(),
891 }
892 }
893
894 #[inline]
895 pub(super) fn hir_opt_ident_span(self, id: HirId) -> Option<Span> {
896 self.hir_opt_ident(id).map(|ident| ident.span)
897 }
898
899 #[inline]
900 pub fn hir_ident(self, id: HirId) -> Ident {
901 self.hir_opt_ident(id).unwrap()
902 }
903
904 #[inline]
905 pub fn hir_opt_name(self, id: HirId) -> Option<Symbol> {
906 self.hir_opt_ident(id).map(|ident| ident.name)
907 }
908
909 pub fn hir_name(self, id: HirId) -> Symbol {
910 self.hir_opt_name(id).unwrap_or_else(|| crate::util::bug::bug_fmt(format_args!("no name for {0}",
self.hir_id_to_string(id)))bug!("no name for {}", self.hir_id_to_string(id)))
911 }
912
913 pub fn hir_attrs(self, id: HirId) -> &'tcx [Attribute] {
916 self.hir_attr_map(id.owner).get(id.local_id)
917 }
918
919 pub fn hir_span(self, hir_id: HirId) -> Span {
922 fn until_within(outer: Span, end: Span) -> Span {
923 if let Some(end) = end.find_ancestor_inside(outer) {
924 outer.with_hi(end.hi())
925 } else {
926 outer
927 }
928 }
929
930 fn named_span(item_span: Span, ident: Ident, generics: Option<&Generics<'_>>) -> Span {
931 let mut span = until_within(item_span, ident.span);
932 if let Some(g) = generics
933 && !g.span.is_dummy()
934 && let Some(g_span) = g.span.find_ancestor_inside(item_span)
935 {
936 span = span.to(g_span);
937 }
938 span
939 }
940
941 let span = match self.hir_node(hir_id) {
942 Node::Item(Item { kind: ItemKind::Fn { sig, .. }, span: outer_span, .. })
944 | Node::TraitItem(TraitItem {
945 kind: TraitItemKind::Fn(sig, ..),
946 span: outer_span,
947 ..
948 })
949 | Node::ImplItem(ImplItem {
950 kind: ImplItemKind::Fn(sig, ..), span: outer_span, ..
951 })
952 | Node::ForeignItem(ForeignItem {
953 kind: ForeignItemKind::Fn(sig, ..),
954 span: outer_span,
955 ..
956 }) => {
957 sig.span.find_ancestor_in_same_ctxt(*outer_span).unwrap_or(*outer_span)
960 }
961 Node::Item(Item {
963 kind: ItemKind::Impl(Impl { generics, .. }),
964 span: outer_span,
965 ..
966 }) => until_within(*outer_span, generics.where_clause_span),
967 Node::Item(Item {
969 kind: ItemKind::Const(_, _, ty, _) | ItemKind::Static(_, _, ty, _),
970 span: outer_span,
971 ..
972 })
973 | Node::TraitItem(TraitItem {
974 kind: TraitItemKind::Const(ty, ..),
975 span: outer_span,
976 ..
977 })
978 | Node::ImplItem(ImplItem {
979 kind: ImplItemKind::Const(ty, ..),
980 span: outer_span,
981 ..
982 })
983 | Node::ForeignItem(ForeignItem {
984 kind: ForeignItemKind::Static(ty, ..),
985 span: outer_span,
986 ..
987 }) => until_within(*outer_span, ty.span),
988 Node::Item(Item {
990 kind: ItemKind::Trait { generics, bounds, .. },
991 span: outer_span,
992 ..
993 })
994 | Node::TraitItem(TraitItem {
995 kind: TraitItemKind::Type(bounds, _),
996 generics,
997 span: outer_span,
998 ..
999 }) => {
1000 let end = if let Some(b) = bounds.last() { b.span() } else { generics.span };
1001 until_within(*outer_span, end)
1002 }
1003 Node::Item(item) => match &item.kind {
1005 ItemKind::Use(path, _) => {
1006 path.span.find_ancestor_in_same_ctxt(item.span).unwrap_or(item.span)
1009 }
1010 _ => {
1011 if let Some(ident) = item.kind.ident() {
1012 named_span(item.span, ident, item.kind.generics())
1013 } else {
1014 item.span
1015 }
1016 }
1017 },
1018 Node::Variant(variant) => named_span(variant.span, variant.ident, None),
1019 Node::ImplItem(item) => named_span(item.span, item.ident, Some(item.generics)),
1020 Node::ForeignItem(item) => named_span(item.span, item.ident, None),
1021 Node::Ctor(_) => return self.hir_span(self.parent_hir_id(hir_id)),
1022 Node::Expr(Expr {
1023 kind: ExprKind::Closure(Closure { fn_decl_span, .. }),
1024 span,
1025 ..
1026 }) => {
1027 fn_decl_span.find_ancestor_inside_same_ctxt(*span).unwrap_or(*span)
1029 }
1030 _ => self.hir_span_with_body(hir_id),
1031 };
1032 if true {
{
match (&span.ctxt(), &self.hir_span_with_body(hir_id).ctxt()) {
(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!(span.ctxt(), self.hir_span_with_body(hir_id).ctxt());
1033 span
1034 }
1035
1036 pub fn hir_span_with_body(self, hir_id: HirId) -> Span {
1039 match self.hir_node(hir_id) {
1040 Node::Param(param) => param.span,
1041 Node::Item(item) => item.span,
1042 Node::ForeignItem(foreign_item) => foreign_item.span,
1043 Node::TraitItem(trait_item) => trait_item.span,
1044 Node::ImplItem(impl_item) => impl_item.span,
1045 Node::Variant(variant) => variant.span,
1046 Node::Field(field) => field.span,
1047 Node::AnonConst(constant) => constant.span,
1048 Node::ConstBlock(constant) => self.hir_body(constant.body).value.span,
1049 Node::ConstArg(const_arg) => const_arg.span,
1050 Node::Expr(expr) => expr.span,
1051 Node::ExprField(field) => field.span,
1052 Node::ConstArgExprField(field) => field.span,
1053 Node::Stmt(stmt) => stmt.span,
1054 Node::PathSegment(seg) => {
1055 let ident_span = seg.ident.span;
1056 ident_span
1057 .with_hi(seg.args.map_or_else(|| ident_span.hi(), |args| args.span_ext.hi()))
1058 }
1059 Node::Ty(ty) => ty.span,
1060 Node::AssocItemConstraint(constraint) => constraint.span,
1061 Node::TraitRef(tr) => tr.path.span,
1062 Node::OpaqueTy(op) => op.span,
1063 Node::Pat(pat) => pat.span,
1064 Node::TyPat(pat) => pat.span,
1065 Node::PatField(field) => field.span,
1066 Node::PatExpr(lit) => lit.span,
1067 Node::Arm(arm) => arm.span,
1068 Node::Block(block) => block.span,
1069 Node::Ctor(..) => self.hir_span_with_body(self.parent_hir_id(hir_id)),
1070 Node::Lifetime(lifetime) => lifetime.ident.span,
1071 Node::GenericParam(param) => param.span,
1072 Node::Infer(i) => i.span,
1073 Node::LetStmt(local) => local.span,
1074 Node::Crate(item) => item.spans.inner_span,
1075 Node::WherePredicate(pred) => pred.span,
1076 Node::PreciseCapturingNonLifetimeArg(param) => param.ident.span,
1077 Node::TestBinderForall(forall) => forall.span,
1078 Node::TestBinderExists(exists) => exists.span,
1079 Node::TestBinderBoundTypeConstraint(bound_type) => bound_type.span,
1080 Node::Synthetic => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
1081 Node::Err(span) => span,
1082 }
1083 }
1084
1085 pub fn hir_span_if_local(self, id: DefId) -> Option<Span> {
1086 id.is_local().then(|| self.def_span(id))
1087 }
1088
1089 pub fn hir_res_span(self, res: Res) -> Option<Span> {
1090 match res {
1091 Res::Err => None,
1092 Res::Local(id) => Some(self.hir_span(id)),
1093 res => self.hir_span_if_local(res.opt_def_id()?),
1094 }
1095 }
1096
1097 pub fn hir_opt_const_param_default_param_def_id(self, anon_const: HirId) -> Option<LocalDefId> {
1100 let const_arg = self.parent_hir_id(anon_const);
1101 match self.parent_hir_node(const_arg) {
1102 Node::GenericParam(GenericParam {
1103 def_id: param_id,
1104 kind: GenericParamKind::Const { .. },
1105 ..
1106 }) => Some(*param_id),
1107 _ => None,
1108 }
1109 }
1110
1111 pub fn hir_maybe_get_struct_pattern_shorthand_field(self, expr: &Expr<'_>) -> Option<Symbol> {
1112 let local = match expr {
1113 Expr {
1114 kind:
1115 ExprKind::Path(QPath::Resolved(
1116 None,
1117 Path {
1118 res: def::Res::Local(_), segments: [PathSegment { ident, .. }], ..
1119 },
1120 )),
1121 ..
1122 } => Some(ident),
1123 _ => None,
1124 }?;
1125
1126 match self.parent_hir_node(expr.hir_id) {
1127 Node::ExprField(field) => {
1128 if field.ident.name == local.name && field.is_shorthand {
1129 return Some(local.name);
1130 }
1131 }
1132 _ => {}
1133 }
1134
1135 None
1136 }
1137}
1138
1139impl<'tcx> intravisit::HirTyCtxt<'tcx> for TyCtxt<'tcx> {
1140 fn hir_node(&self, hir_id: HirId) -> Node<'tcx> {
1141 (*self).hir_node(hir_id)
1142 }
1143
1144 fn hir_body(&self, id: BodyId) -> &'tcx Body<'tcx> {
1145 (*self).hir_body(id)
1146 }
1147
1148 fn hir_item(&self, id: ItemId) -> &'tcx Item<'tcx> {
1149 (*self).hir_item(id)
1150 }
1151
1152 fn hir_trait_item(&self, id: TraitItemId) -> &'tcx TraitItem<'tcx> {
1153 (*self).hir_trait_item(id)
1154 }
1155
1156 fn hir_impl_item(&self, id: ImplItemId) -> &'tcx ImplItem<'tcx> {
1157 (*self).hir_impl_item(id)
1158 }
1159
1160 fn hir_foreign_item(&self, id: ForeignItemId) -> &'tcx ForeignItem<'tcx> {
1161 (*self).hir_foreign_item(id)
1162 }
1163}
1164
1165pub(super) fn crate_hash(tcx: TyCtxt<'_>, _: LocalCrate) -> Svh {
1166 let krate = tcx.hir_crate_items(());
1167 let upstream_crates = upstream_crates(tcx);
1168 let resolutions = tcx.resolutions(());
1169
1170 let mut source_file_names: Vec<_> = tcx
1176 .sess
1177 .source_map()
1178 .files()
1179 .iter()
1180 .filter(|source_file| source_file.cnum == LOCAL_CRATE)
1181 .map(|source_file| source_file.stable_id)
1182 .collect();
1183
1184 source_file_names.sort_unstable();
1185
1186 let debugger_visualizers: Vec<_> = tcx
1192 .debugger_visualizers(LOCAL_CRATE)
1193 .iter()
1194 .map(DebuggerVisualizerFile::path_erased)
1198 .collect();
1199
1200 let crate_hash: Fingerprint = tcx.with_stable_hashing_context(|mut hcx| {
1201 let mut stable_hasher = StableHasher::new();
1202 for owner in krate.owners() {
1204 if let Some(info) = tcx.lower_to_hir(owner.def_id).as_owner() {
1205 info.stable_hash(&mut hcx, &mut stable_hasher);
1206 }
1207 }
1208 upstream_crates.stable_hash(&mut hcx, &mut stable_hasher);
1209 source_file_names.stable_hash(&mut hcx, &mut stable_hasher);
1210 debugger_visualizers.stable_hash(&mut hcx, &mut stable_hasher);
1211 if tcx.sess.opts.incremental.is_some() {
1212 let definitions = tcx.untracked().definitions.freeze();
1213 let mut owner_spans: Vec<_> = tcx
1214 .hir_crate_items(())
1215 .definitions()
1216 .map(|def_id| {
1217 let def_path_hash = definitions.def_path_hash(def_id);
1218 let span = tcx.source_span(def_id);
1219 if true {
{
match (&span.parent(), &None) {
(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!(span.parent(), None);
1220 (def_path_hash, span)
1221 })
1222 .collect();
1223 owner_spans.sort_unstable_by_key(|bn| bn.0);
1224 owner_spans.stable_hash(&mut hcx, &mut stable_hasher);
1225 }
1226 tcx.sess.opts.dep_tracking_hash(true).stable_hash(&mut hcx, &mut stable_hasher);
1227 tcx.stable_crate_id(LOCAL_CRATE).stable_hash(&mut hcx, &mut stable_hasher);
1228 resolutions.visibilities_for_hashing.stable_hash(&mut hcx, &mut stable_hasher);
1233 with_metavar_spans(|mspans| {
1234 mspans.freeze_and_get_read_spans().stable_hash(&mut hcx, &mut stable_hasher);
1235 });
1236 stable_hasher.finish()
1237 });
1238
1239 Svh::new(crate_hash)
1240}
1241
1242fn upstream_crates(tcx: TyCtxt<'_>) -> Vec<(StableCrateId, Svh)> {
1243 let mut upstream_crates: Vec<_> = tcx
1244 .crates(())
1245 .iter()
1246 .map(|&cnum| {
1247 let stable_crate_id = tcx.stable_crate_id(cnum);
1248 let hash = tcx.crate_hash(cnum);
1249 (stable_crate_id, hash)
1250 })
1251 .collect();
1252 upstream_crates.sort_unstable_by_key(|&(stable_crate_id, _)| stable_crate_id);
1253 upstream_crates
1254}
1255
1256pub(super) fn hir_module_items(tcx: TyCtxt<'_>, module_id: LocalModId) -> ModuleItems {
1257 let mut collector = ItemCollector::new(tcx, false);
1258
1259 let (hir_mod, span, hir_id) = tcx.hir_get_module(module_id);
1260 collector.visit_mod(hir_mod, span, hir_id);
1261
1262 let ItemCollector {
1263 submodules,
1264 items,
1265 trait_items,
1266 impl_items,
1267 foreign_items,
1268 body_owners,
1269 opaques,
1270 nested_bodies,
1271 eiis,
1272 proc_macro_decls,
1273 ..
1274 } = collector;
1275
1276 ModuleItems {
1277 add_root: false,
1278 submodules: submodules.into_boxed_slice(),
1279 free_items: items.into_boxed_slice(),
1280 trait_items: trait_items.into_boxed_slice(),
1281 impl_items: impl_items.into_boxed_slice(),
1282 foreign_items: foreign_items.into_boxed_slice(),
1283 body_owners: body_owners.into_boxed_slice(),
1284 opaques: opaques.into_boxed_slice(),
1285 nested_bodies: nested_bodies.into_boxed_slice(),
1286 eiis: eiis.into_boxed_slice(),
1287 proc_macro_decls,
1288 }
1289}
1290
1291pub(crate) fn hir_crate_items(tcx: TyCtxt<'_>, _: ()) -> ModuleItems {
1292 let mut collector = ItemCollector::new(tcx, true);
1293
1294 collector.submodules.push(CRATE_MOD_ID);
1298 tcx.hir_walk_toplevel_module(&mut collector);
1299
1300 let ItemCollector {
1301 submodules,
1302 items,
1303 trait_items,
1304 impl_items,
1305 foreign_items,
1306 body_owners,
1307 opaques,
1308 nested_bodies,
1309 eiis,
1310 proc_macro_decls,
1311 ..
1312 } = collector;
1313
1314 ModuleItems {
1315 add_root: true,
1316 submodules: submodules.into_boxed_slice(),
1317 free_items: items.into_boxed_slice(),
1318 trait_items: trait_items.into_boxed_slice(),
1319 impl_items: impl_items.into_boxed_slice(),
1320 foreign_items: foreign_items.into_boxed_slice(),
1321 body_owners: body_owners.into_boxed_slice(),
1322 opaques: opaques.into_boxed_slice(),
1323 nested_bodies: nested_bodies.into_boxed_slice(),
1324 eiis: eiis.into_boxed_slice(),
1325 proc_macro_decls,
1326 }
1327}
1328
1329struct ItemCollector<'tcx> {
1330 crate_collector: bool,
1335 tcx: TyCtxt<'tcx>,
1336 submodules: Vec<LocalModId> = ::alloc::vec::Vec::new()vec![],
1337 items: Vec<ItemId> = ::alloc::vec::Vec::new()vec![],
1338 trait_items: Vec<TraitItemId> = ::alloc::vec::Vec::new()vec![],
1339 impl_items: Vec<ImplItemId> = ::alloc::vec::Vec::new()vec![],
1340 foreign_items: Vec<ForeignItemId> = ::alloc::vec::Vec::new()vec![],
1341 body_owners: Vec<LocalDefId> = ::alloc::vec::Vec::new()vec![],
1342 opaques: Vec<LocalDefId> = ::alloc::vec::Vec::new()vec![],
1343 nested_bodies: Vec<LocalDefId> = ::alloc::vec::Vec::new()vec![],
1344 eiis: Vec<LocalDefId> = ::alloc::vec::Vec::new()vec![],
1345 proc_macro_decls: Option<LocalDefId> = None,
1346}
1347
1348impl<'tcx> ItemCollector<'tcx> {
1349 fn new(tcx: TyCtxt<'tcx>, crate_collector: bool) -> ItemCollector<'tcx> {
1350 ItemCollector { crate_collector, tcx, .. }
1351 }
1352}
1353
1354impl<'hir> Visitor<'hir> for ItemCollector<'hir> {
1355 type NestedFilter = nested_filter::All;
1356
1357 fn maybe_tcx(&mut self) -> Self::MaybeTyCtxt {
1358 self.tcx
1359 }
1360
1361 fn visit_item(&mut self, item: &'hir Item<'hir>) {
1362 if Node::Item(item).associated_body().is_some() {
1363 self.body_owners.push(item.owner_id.def_id);
1364 }
1365
1366 let item_id = item.item_id();
1367
1368 if self.crate_collector
1369 && self.proc_macro_decls.is_none()
1370 && {
{
'done:
{
for i in
::rustc_attr_ir::HasAttrs::get_attrs(item_id.hir_id(),
&self.tcx) {
#[allow(unused_imports)]
use ::rustc_attr_ir::AttributeKind::*;
let i: &::rustc_attr_ir::Attribute = i;
match i {
::rustc_attr_ir::Attribute::Parsed(RustcProcMacroDecls) => {
break 'done Some(());
}
::rustc_attr_ir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}
}.is_some()find_attr!(self.tcx, item_id.hir_id(), RustcProcMacroDecls)
1371 {
1372 self.proc_macro_decls = Some(item_id.owner_id.def_id);
1373 }
1374
1375 self.items.push(item_id);
1376
1377 if let ItemKind::Static(..) | ItemKind::Fn { .. } | ItemKind::Macro(..) = &item.kind
1378 && item.eii
1379 {
1380 self.eiis.push(item.owner_id.def_id)
1381 }
1382
1383 if let ItemKind::Mod(_, module) = &item.kind {
1385 self.submodules.push(LocalModId::new_unchecked(item.owner_id.def_id));
1386 if self.crate_collector {
1388 intravisit::walk_mod(self, module);
1389 }
1390 } else {
1391 intravisit::walk_item(self, item)
1392 }
1393 }
1394
1395 fn visit_foreign_item(&mut self, item: &'hir ForeignItem<'hir>) {
1396 self.foreign_items.push(item.foreign_item_id());
1397 intravisit::walk_foreign_item(self, item)
1398 }
1399
1400 fn visit_anon_const(&mut self, c: &'hir AnonConst) {
1401 self.body_owners.push(c.def_id);
1402 intravisit::walk_anon_const(self, c)
1403 }
1404
1405 fn visit_inline_const(&mut self, c: &'hir ConstBlock) {
1406 self.body_owners.push(c.def_id);
1407 self.nested_bodies.push(c.def_id);
1408 intravisit::walk_inline_const(self, c)
1409 }
1410
1411 fn visit_opaque_ty(&mut self, o: &'hir OpaqueTy<'hir>) {
1412 self.opaques.push(o.def_id);
1413 intravisit::walk_opaque_ty(self, o)
1414 }
1415
1416 fn visit_expr(&mut self, ex: &'hir Expr<'hir>) {
1417 if let ExprKind::Closure(closure) = ex.kind {
1418 self.body_owners.push(closure.def_id);
1419 self.nested_bodies.push(closure.def_id);
1420 }
1421 intravisit::walk_expr(self, ex)
1422 }
1423
1424 fn visit_trait_item(&mut self, item: &'hir TraitItem<'hir>) {
1425 if Node::TraitItem(item).associated_body().is_some() {
1426 self.body_owners.push(item.owner_id.def_id);
1427 }
1428
1429 self.trait_items.push(item.trait_item_id());
1430
1431 intravisit::walk_trait_item(self, item)
1432 }
1433
1434 fn visit_impl_item(&mut self, item: &'hir ImplItem<'hir>) {
1435 if Node::ImplItem(item).associated_body().is_some() {
1436 self.body_owners.push(item.owner_id.def_id);
1437 }
1438
1439 self.impl_items.push(item.impl_item_id());
1440
1441 intravisit::walk_impl_item(self, item)
1442 }
1443}