|
1 | 1 | use rustc_hir::def::DefKind;
|
2 |
| -use rustc_hir::def_id::CRATE_DEF_ID; |
| 2 | +use rustc_hir::def_id::{LocalDefId, CRATE_DEF_ID}; |
| 3 | +use rustc_hir::intravisit; |
| 4 | +use rustc_middle::hir::nested_filter::OnlyBodies; |
3 | 5 | use rustc_middle::ty::TyCtxt;
|
4 | 6 | use rustc_span::sym;
|
5 | 7 |
|
@@ -41,3 +43,49 @@ pub(crate) fn predicates_and_item_bounds(tcx: TyCtxt<'_>) {
|
41 | 43 | }
|
42 | 44 | }
|
43 | 45 | }
|
| 46 | + |
| 47 | +pub(crate) fn def_parents(tcx: TyCtxt<'_>) { |
| 48 | + for did in tcx.hir().body_owners() { |
| 49 | + if tcx.has_attr(did, sym::rustc_dump_def_parents) { |
| 50 | + struct AnonConstFinder<'tcx> { |
| 51 | + tcx: TyCtxt<'tcx>, |
| 52 | + anon_consts: Vec<LocalDefId>, |
| 53 | + } |
| 54 | + |
| 55 | + impl<'tcx> intravisit::Visitor<'tcx> for AnonConstFinder<'tcx> { |
| 56 | + type NestedFilter = OnlyBodies; |
| 57 | + |
| 58 | + fn nested_visit_map(&mut self) -> Self::Map { |
| 59 | + self.tcx.hir() |
| 60 | + } |
| 61 | + |
| 62 | + fn visit_anon_const(&mut self, c: &'tcx rustc_hir::AnonConst) { |
| 63 | + self.anon_consts.push(c.def_id); |
| 64 | + intravisit::walk_anon_const(self, c) |
| 65 | + } |
| 66 | + } |
| 67 | + |
| 68 | + // Look for any anon consts inside of this body owner as there is no way to apply |
| 69 | + // the `rustc_dump_def_parents` attribute to the anon const so it would not be possible |
| 70 | + // to see what its def parent is. |
| 71 | + let mut anon_ct_finder = AnonConstFinder { tcx, anon_consts: vec![] }; |
| 72 | + intravisit::walk_expr(&mut anon_ct_finder, tcx.hir().body_owned_by(did).value); |
| 73 | + |
| 74 | + for did in [did].into_iter().chain(anon_ct_finder.anon_consts) { |
| 75 | + let span = tcx.def_span(did); |
| 76 | + |
| 77 | + let mut diag = tcx.dcx().struct_span_err( |
| 78 | + span, |
| 79 | + format!("{}: {did:?}", sym::rustc_dump_def_parents.as_str()), |
| 80 | + ); |
| 81 | + |
| 82 | + let mut current_did = did.to_def_id(); |
| 83 | + while let Some(parent_did) = tcx.opt_parent(current_did) { |
| 84 | + current_did = parent_did; |
| 85 | + diag.span_note(tcx.def_span(parent_did), format!("{parent_did:?}")); |
| 86 | + } |
| 87 | + diag.emit(); |
| 88 | + } |
| 89 | + } |
| 90 | + } |
| 91 | +} |
0 commit comments