Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5bffa10

Browse files
committedFeb 19, 2024
Auto merge of #121089 - oli-obk:create_def_feed, r=cjgillot
Remove `feed_local_def_id` best reviewed commit by commit Basically I returned `TyCtxtFeed` from `create_def` and then preserved that in the local caches based on #121084 r? `@petrochenkov`
2 parents bea5beb + a640db5 commit 5bffa10

File tree

7 files changed

+132
-56
lines changed

7 files changed

+132
-56
lines changed
 

‎compiler/rustc_interface/src/queries.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ impl<'tcx> Queries<'tcx> {
173173
feed.crate_for_resolver(tcx.arena.alloc(Steal::new((krate, pre_configured_attrs))));
174174
feed.output_filenames(Arc::new(outputs));
175175

176-
let feed = tcx.feed_local_def_id(CRATE_DEF_ID);
176+
let feed = tcx.feed_local_crate_def_id();
177177
feed.def_kind(DefKind::Mod);
178178
});
179179
Ok(qcx)

‎compiler/rustc_middle/src/ty/context.rs

+40-4
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ use rustc_session::config::CrateType;
6262
use rustc_session::cstore::{CrateStoreDyn, Untracked};
6363
use rustc_session::lint::Lint;
6464
use rustc_session::{Limit, MetadataKind, Session};
65-
use rustc_span::def_id::{DefPathHash, StableCrateId};
65+
use rustc_span::def_id::{DefPathHash, StableCrateId, CRATE_DEF_ID};
6666
use rustc_span::symbol::{kw, sym, Ident, Symbol};
6767
use rustc_span::{Span, DUMMY_SP};
6868
use rustc_target::abi::{FieldIdx, Layout, LayoutS, TargetDataLayout, VariantIdx};
@@ -76,6 +76,7 @@ use std::cmp::Ordering;
7676
use std::fmt;
7777
use std::hash::{Hash, Hasher};
7878
use std::iter;
79+
use std::marker::PhantomData;
7980
use std::mem;
8081
use std::ops::{Bound, Deref};
8182

@@ -522,15 +523,33 @@ pub struct TyCtxtFeed<'tcx, KEY: Copy> {
522523
key: KEY,
523524
}
524525

526+
/// The same as `TyCtxtFeed`, but does not contain a `TyCtxt`.
527+
/// Use this to pass around when you have a `TyCtxt` elsewhere.
528+
/// Just an optimization to save space and not store hundreds of
529+
/// `TyCtxtFeed` in the resolver.
530+
#[derive(Copy, Clone)]
531+
pub struct Feed<'tcx, KEY: Copy> {
532+
_tcx: PhantomData<TyCtxt<'tcx>>,
533+
// Do not allow direct access, as downstream code must not mutate this field.
534+
key: KEY,
535+
}
536+
537+
impl<T: fmt::Debug + Copy> fmt::Debug for Feed<'_, T> {
538+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
539+
self.key.fmt(f)
540+
}
541+
}
542+
525543
impl<'tcx> TyCtxt<'tcx> {
526544
pub fn feed_unit_query(self) -> TyCtxtFeed<'tcx, ()> {
527545
TyCtxtFeed { tcx: self, key: () }
528546
}
529547
pub fn feed_local_crate(self) -> TyCtxtFeed<'tcx, CrateNum> {
530548
TyCtxtFeed { tcx: self, key: LOCAL_CRATE }
531549
}
532-
pub fn feed_local_def_id(self, key: LocalDefId) -> TyCtxtFeed<'tcx, LocalDefId> {
533-
TyCtxtFeed { tcx: self, key }
550+
551+
pub fn feed_local_crate_def_id(self) -> TyCtxtFeed<'tcx, LocalDefId> {
552+
TyCtxtFeed { tcx: self, key: CRATE_DEF_ID }
534553
}
535554

536555
/// In order to break cycles involving `AnonConst`, we need to set the expected type by side
@@ -547,6 +566,23 @@ impl<'tcx, KEY: Copy> TyCtxtFeed<'tcx, KEY> {
547566
pub fn key(&self) -> KEY {
548567
self.key
549568
}
569+
570+
#[inline(always)]
571+
pub fn downgrade(self) -> Feed<'tcx, KEY> {
572+
Feed { _tcx: PhantomData, key: self.key }
573+
}
574+
}
575+
576+
impl<'tcx, KEY: Copy> Feed<'tcx, KEY> {
577+
#[inline(always)]
578+
pub fn key(&self) -> KEY {
579+
self.key
580+
}
581+
582+
#[inline(always)]
583+
pub fn upgrade(self, tcx: TyCtxt<'tcx>) -> TyCtxtFeed<'tcx, KEY> {
584+
TyCtxtFeed { tcx, key: self.key }
585+
}
550586
}
551587

552588
impl<'tcx> TyCtxtFeed<'tcx, LocalDefId> {
@@ -1091,7 +1127,7 @@ impl<'tcx> TyCtxt<'tcx> {
10911127
// needs to be re-evaluated.
10921128
self.dep_graph.read_index(DepNodeIndex::FOREVER_RED_NODE);
10931129

1094-
let feed = self.feed_local_def_id(def_id);
1130+
let feed = TyCtxtFeed { tcx: self, key: def_id };
10951131
feed.def_kind(def_kind);
10961132
// Unique types created for closures participate in type privacy checking.
10971133
// They have visibilities inherited from the module they are defined in.

‎compiler/rustc_middle/src/ty/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ pub use self::consts::{
8484
Const, ConstData, ConstInt, ConstKind, Expr, ScalarInt, UnevaluatedConst, ValTree,
8585
};
8686
pub use self::context::{
87-
tls, CtxtInterners, DeducedParamAttrs, FreeRegionInfo, GlobalCtxt, Lift, TyCtxt, TyCtxtFeed,
87+
tls, CtxtInterners, DeducedParamAttrs, Feed, FreeRegionInfo, GlobalCtxt, Lift, TyCtxt,
88+
TyCtxtFeed,
8889
};
8990
pub use self::instance::{Instance, InstanceDef, ShortInstance, UnusedGenericParams};
9091
pub use self::list::List;

‎compiler/rustc_resolve/src/build_reduced_graph.rs

+33-23
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ use rustc_hir::def::{self, *};
2525
use rustc_hir::def_id::{DefId, LocalDefId, CRATE_DEF_ID};
2626
use rustc_metadata::creader::LoadedMacro;
2727
use rustc_middle::metadata::ModChild;
28+
use rustc_middle::ty::Feed;
2829
use rustc_middle::{bug, ty};
2930
use rustc_span::hygiene::{ExpnId, LocalExpnId, MacroKind};
3031
use rustc_span::symbol::{kw, sym, Ident, Symbol};
@@ -407,7 +408,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
407408
// Top level use tree reuses the item's id and list stems reuse their parent
408409
// use tree's ids, so in both cases their visibilities are already filled.
409410
if nested && !list_stem {
410-
self.r.feed_visibility(self.r.local_def_id(id), vis);
411+
self.r.feed_visibility(self.r.feed(id), vis);
411412
}
412413

413414
let mut prefix_iter = parent_prefix
@@ -632,7 +633,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
632633
&mut self,
633634
fields: &[ast::FieldDef],
634635
ident: Ident,
635-
def_id: LocalDefId,
636+
feed: Feed<'tcx, LocalDefId>,
636637
adt_res: Res,
637638
adt_vis: ty::Visibility,
638639
adt_span: Span,
@@ -643,7 +644,8 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
643644

644645
// Define a name in the type namespace if it is not anonymous.
645646
self.r.define(parent, ident, TypeNS, (adt_res, adt_vis, adt_span, expansion));
646-
self.r.feed_visibility(def_id, adt_vis);
647+
self.r.feed_visibility(feed, adt_vis);
648+
let def_id = feed.key();
647649

648650
// Record field names for error reporting.
649651
self.insert_field_def_ids(def_id, fields);
@@ -653,14 +655,15 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
653655
match &field.ty.kind {
654656
ast::TyKind::AnonStruct(id, nested_fields)
655657
| ast::TyKind::AnonUnion(id, nested_fields) => {
656-
let local_def_id = self.r.local_def_id(*id);
658+
let feed = self.r.feed(*id);
659+
let local_def_id = feed.key();
657660
let def_id = local_def_id.to_def_id();
658661
let def_kind = self.r.tcx.def_kind(local_def_id);
659662
let res = Res::Def(def_kind, def_id);
660663
self.build_reduced_graph_for_struct_variant(
661664
&nested_fields,
662665
Ident::empty(),
663-
local_def_id,
666+
feed,
664667
res,
665668
// Anonymous adts inherit visibility from their parent adts.
666669
adt_vis,
@@ -680,12 +683,13 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
680683
let ident = item.ident;
681684
let sp = item.span;
682685
let vis = self.resolve_visibility(&item.vis);
683-
let local_def_id = self.r.local_def_id(item.id);
686+
let feed = self.r.feed(item.id);
687+
let local_def_id = feed.key();
684688
let def_id = local_def_id.to_def_id();
685689
let def_kind = self.r.tcx.def_kind(def_id);
686690
let res = Res::Def(def_kind, def_id);
687691

688-
self.r.feed_visibility(local_def_id, vis);
692+
self.r.feed_visibility(feed, vis);
689693

690694
match item.kind {
691695
ItemKind::Use(ref use_tree) => {
@@ -762,7 +766,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
762766
self.build_reduced_graph_for_struct_variant(
763767
vdata.fields(),
764768
ident,
765-
local_def_id,
769+
feed,
766770
res,
767771
vis,
768772
sp,
@@ -795,10 +799,11 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
795799
}
796800
ret_fields.push(field_vis.to_def_id());
797801
}
798-
let ctor_def_id = self.r.local_def_id(ctor_node_id);
802+
let feed = self.r.feed(ctor_node_id);
803+
let ctor_def_id = feed.key();
799804
let ctor_res = self.res(ctor_def_id);
800805
self.r.define(parent, ident, ValueNS, (ctor_res, ctor_vis, sp, expansion));
801-
self.r.feed_visibility(ctor_def_id, ctor_vis);
806+
self.r.feed_visibility(feed, ctor_vis);
802807
// We need the field visibility spans also for the constructor for E0603.
803808
self.insert_field_visibilities_local(ctor_def_id.to_def_id(), vdata.fields());
804809

@@ -812,7 +817,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
812817
self.build_reduced_graph_for_struct_variant(
813818
vdata.fields(),
814819
ident,
815-
local_def_id,
820+
feed,
816821
res,
817822
vis,
818823
sp,
@@ -919,7 +924,8 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
919924

920925
/// Constructs the reduced graph for one foreign item.
921926
fn build_reduced_graph_for_foreign_item(&mut self, item: &ForeignItem) {
922-
let local_def_id = self.r.local_def_id(item.id);
927+
let feed = self.r.feed(item.id);
928+
let local_def_id = feed.key();
923929
let def_id = local_def_id.to_def_id();
924930
let ns = match item.kind {
925931
ForeignItemKind::Fn(..) => ValueNS,
@@ -931,7 +937,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
931937
let expansion = self.parent_scope.expansion;
932938
let vis = self.resolve_visibility(&item.vis);
933939
self.r.define(parent, item.ident, ns, (self.res(def_id), vis, item.span, expansion));
934-
self.r.feed_visibility(local_def_id, vis);
940+
self.r.feed_visibility(feed, vis);
935941
}
936942

937943
fn build_reduced_graph_for_block(&mut self, block: &Block) {
@@ -1218,7 +1224,8 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
12181224
fn define_macro(&mut self, item: &ast::Item) -> MacroRulesScopeRef<'a> {
12191225
let parent_scope = self.parent_scope;
12201226
let expansion = parent_scope.expansion;
1221-
let def_id = self.r.local_def_id(item.id);
1227+
let feed = self.r.feed(item.id);
1228+
let def_id = feed.key();
12221229
let (res, ident, span, macro_rules) = match &item.kind {
12231230
ItemKind::MacroDef(def) => (self.res(def_id), item.ident, item.span, def.macro_rules),
12241231
ItemKind::Fn(..) => match self.proc_macro_stub(item) {
@@ -1269,7 +1276,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
12691276
self.r.check_reserved_macro_name(ident, res);
12701277
self.insert_unused_macro(ident, def_id, item.id);
12711278
}
1272-
self.r.feed_visibility(def_id, vis);
1279+
self.r.feed_visibility(feed, vis);
12731280
let scope = self.r.arenas.alloc_macro_rules_scope(MacroRulesScope::Binding(
12741281
self.r.arenas.alloc_macro_rules_binding(MacroRulesBinding {
12751282
parent_macro_rules_scope: parent_scope.macro_rules,
@@ -1293,7 +1300,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
12931300
self.insert_unused_macro(ident, def_id, item.id);
12941301
}
12951302
self.r.define(module, ident, MacroNS, (res, vis, span, expansion));
1296-
self.r.feed_visibility(def_id, vis);
1303+
self.r.feed_visibility(feed, vis);
12971304
self.parent_scope.macro_rules
12981305
}
12991306
}
@@ -1385,7 +1392,8 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
13851392
}
13861393

13871394
let vis = self.resolve_visibility(&item.vis);
1388-
let local_def_id = self.r.local_def_id(item.id);
1395+
let feed = self.r.feed(item.id);
1396+
let local_def_id = feed.key();
13891397
let def_id = local_def_id.to_def_id();
13901398

13911399
if !(ctxt == AssocCtxt::Impl
@@ -1395,7 +1403,7 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
13951403
// Trait impl item visibility is inherited from its trait when not specified
13961404
// explicitly. In that case we cannot determine it here in early resolve,
13971405
// so we leave a hole in the visibility table to be filled later.
1398-
self.r.feed_visibility(local_def_id, vis);
1406+
self.r.feed_visibility(feed, vis);
13991407
}
14001408

14011409
if ctxt == AssocCtxt::Trait {
@@ -1469,7 +1477,7 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
14691477
self.visit_invoc(sf.id);
14701478
} else {
14711479
let vis = self.resolve_visibility(&sf.vis);
1472-
self.r.feed_visibility(self.r.local_def_id(sf.id), vis);
1480+
self.r.feed_visibility(self.r.feed(sf.id), vis);
14731481
visit::walk_field_def(self, sf);
14741482
}
14751483
}
@@ -1487,10 +1495,11 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
14871495
let ident = variant.ident;
14881496

14891497
// Define a name in the type namespace.
1490-
let def_id = self.r.local_def_id(variant.id);
1498+
let feed = self.r.feed(variant.id);
1499+
let def_id = feed.key();
14911500
let vis = self.resolve_visibility(&variant.vis);
14921501
self.r.define(parent, ident, TypeNS, (self.res(def_id), vis, variant.span, expn_id));
1493-
self.r.feed_visibility(def_id, vis);
1502+
self.r.feed_visibility(feed, vis);
14941503

14951504
// If the variant is marked as non_exhaustive then lower the visibility to within the crate.
14961505
let ctor_vis =
@@ -1502,10 +1511,11 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
15021511

15031512
// Define a constructor name in the value namespace.
15041513
if let Some(ctor_node_id) = variant.data.ctor_node_id() {
1505-
let ctor_def_id = self.r.local_def_id(ctor_node_id);
1514+
let feed = self.r.feed(ctor_node_id);
1515+
let ctor_def_id = feed.key();
15061516
let ctor_res = self.res(ctor_def_id);
15071517
self.r.define(parent, ident, ValueNS, (ctor_res, ctor_vis, variant.span, expn_id));
1508-
self.r.feed_visibility(ctor_def_id, ctor_vis);
1518+
self.r.feed_visibility(feed, ctor_vis);
15091519
}
15101520

15111521
// Record field names for error reporting.

‎compiler/rustc_resolve/src/def_collector.rs

+23-10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ use rustc_ast::*;
44
use rustc_expand::expand::AstFragment;
55
use rustc_hir::def::{CtorKind, CtorOf, DefKind};
66
use rustc_hir::def_id::LocalDefId;
7+
use rustc_middle::ty::Feed;
78
use rustc_span::hygiene::LocalExpnId;
89
use rustc_span::symbol::{kw, sym, Symbol};
910
use rustc_span::Span;
@@ -26,26 +27,38 @@ struct DefCollector<'a, 'b, 'tcx> {
2627
}
2728

2829
impl<'a, 'b, 'tcx> DefCollector<'a, 'b, 'tcx> {
29-
fn create_def(
30+
fn create_def_with_feed(
3031
&mut self,
3132
node_id: NodeId,
3233
name: Symbol,
3334
def_kind: DefKind,
3435
span: Span,
35-
) -> LocalDefId {
36+
) -> Feed<'tcx, LocalDefId> {
3637
let parent_def = self.parent_def;
3738
debug!(
3839
"create_def(node_id={:?}, def_kind={:?}, parent_def={:?})",
3940
node_id, def_kind, parent_def
4041
);
41-
self.resolver.create_def(
42-
parent_def,
43-
node_id,
44-
name,
45-
def_kind,
46-
self.expansion.to_expn_id(),
47-
span.with_parent(None),
48-
)
42+
self.resolver
43+
.create_def(
44+
parent_def,
45+
node_id,
46+
name,
47+
def_kind,
48+
self.expansion.to_expn_id(),
49+
span.with_parent(None),
50+
)
51+
.downgrade()
52+
}
53+
54+
fn create_def(
55+
&mut self,
56+
node_id: NodeId,
57+
name: Symbol,
58+
def_kind: DefKind,
59+
span: Span,
60+
) -> LocalDefId {
61+
self.create_def_with_feed(node_id, name, def_kind, span).key()
4962
}
5063

5164
fn with_parent<F: FnOnce(&mut Self)>(&mut self, parent_def: LocalDefId, f: F) {

‎compiler/rustc_resolve/src/late.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3118,7 +3118,7 @@ impl<'a: 'ast, 'b, 'ast, 'tcx> LateResolutionVisitor<'a, 'b, 'ast, 'tcx> {
31183118
);
31193119
rustc_middle::ty::Visibility::Public
31203120
};
3121-
this.r.feed_visibility(this.r.local_def_id(id), vis);
3121+
this.r.feed_visibility(this.r.feed(id), vis);
31223122
};
31233123

31243124
let Some(binding) = binding else {

‎compiler/rustc_resolve/src/lib.rs

+32-16
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ use rustc_middle::metadata::ModChild;
5252
use rustc_middle::middle::privacy::EffectiveVisibilities;
5353
use rustc_middle::query::Providers;
5454
use rustc_middle::span_bug;
55-
use rustc_middle::ty::{self, MainDefinition, RegisteredTools, TyCtxt};
55+
use rustc_middle::ty::{self, Feed, MainDefinition, RegisteredTools, TyCtxt, TyCtxtFeed};
5656
use rustc_middle::ty::{ResolverGlobalCtxt, ResolverOutputs};
5757
use rustc_query_system::ich::StableHashingContext;
5858
use rustc_session::lint::builtin::PRIVATE_MACRO_USE;
@@ -1115,7 +1115,7 @@ pub struct Resolver<'a, 'tcx> {
11151115

11161116
next_node_id: NodeId,
11171117

1118-
node_id_to_def_id: NodeMap<LocalDefId>,
1118+
node_id_to_def_id: NodeMap<Feed<'tcx, LocalDefId>>,
11191119
def_id_to_node_id: IndexVec<LocalDefId, ast::NodeId>,
11201120

11211121
/// Indices of unnamed struct or variant fields with unresolved attributes.
@@ -1231,11 +1231,19 @@ impl<'a, 'tcx> AsMut<Resolver<'a, 'tcx>> for Resolver<'a, 'tcx> {
12311231

12321232
impl<'tcx> Resolver<'_, 'tcx> {
12331233
fn opt_local_def_id(&self, node: NodeId) -> Option<LocalDefId> {
1234-
self.node_id_to_def_id.get(&node).copied()
1234+
self.opt_feed(node).map(|f| f.key())
12351235
}
12361236

12371237
fn local_def_id(&self, node: NodeId) -> LocalDefId {
1238-
self.opt_local_def_id(node).unwrap_or_else(|| panic!("no entry for node id: `{node:?}`"))
1238+
self.feed(node).key()
1239+
}
1240+
1241+
fn opt_feed(&self, node: NodeId) -> Option<Feed<'tcx, LocalDefId>> {
1242+
self.node_id_to_def_id.get(&node).copied()
1243+
}
1244+
1245+
fn feed(&self, node: NodeId) -> Feed<'tcx, LocalDefId> {
1246+
self.opt_feed(node).unwrap_or_else(|| panic!("no entry for node id: `{node:?}`"))
12391247
}
12401248

12411249
fn local_def_kind(&self, node: NodeId) -> DefKind {
@@ -1251,18 +1259,19 @@ impl<'tcx> Resolver<'_, 'tcx> {
12511259
def_kind: DefKind,
12521260
expn_id: ExpnId,
12531261
span: Span,
1254-
) -> LocalDefId {
1262+
) -> TyCtxtFeed<'tcx, LocalDefId> {
12551263
let data = def_kind.def_path_data(name);
12561264
assert!(
12571265
!self.node_id_to_def_id.contains_key(&node_id),
12581266
"adding a def'n for node-id {:?} and data {:?} but a previous def'n exists: {:?}",
12591267
node_id,
12601268
data,
1261-
self.tcx.definitions_untracked().def_key(self.node_id_to_def_id[&node_id]),
1269+
self.tcx.definitions_untracked().def_key(self.node_id_to_def_id[&node_id].key()),
12621270
);
12631271

12641272
// FIXME: remove `def_span` body, pass in the right spans here and call `tcx.at().create_def()`
1265-
let def_id = self.tcx.create_def(parent, name, def_kind).def_id();
1273+
let feed = self.tcx.create_def(parent, name, def_kind);
1274+
let def_id = feed.def_id();
12661275

12671276
// Create the definition.
12681277
if expn_id != ExpnId::root() {
@@ -1279,11 +1288,11 @@ impl<'tcx> Resolver<'_, 'tcx> {
12791288
// we don't need a mapping from `NodeId` to `LocalDefId`.
12801289
if node_id != ast::DUMMY_NODE_ID {
12811290
debug!("create_def: def_id_to_node_id[{:?}] <-> {:?}", def_id, node_id);
1282-
self.node_id_to_def_id.insert(node_id, def_id);
1291+
self.node_id_to_def_id.insert(node_id, feed.downgrade());
12831292
}
12841293
assert_eq!(self.def_id_to_node_id.push(node_id), def_id);
12851294

1286-
def_id
1295+
feed
12871296
}
12881297

12891298
fn item_generics_num_lifetimes(&self, def_id: DefId) -> usize {
@@ -1331,7 +1340,8 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
13311340
let mut def_id_to_node_id = IndexVec::default();
13321341
assert_eq!(def_id_to_node_id.push(CRATE_NODE_ID), CRATE_DEF_ID);
13331342
let mut node_id_to_def_id = NodeMap::default();
1334-
node_id_to_def_id.insert(CRATE_NODE_ID, CRATE_DEF_ID);
1343+
let crate_feed = tcx.feed_local_crate_def_id().downgrade();
1344+
node_id_to_def_id.insert(CRATE_NODE_ID, crate_feed);
13351345

13361346
let mut invocation_parents = FxHashMap::default();
13371347
invocation_parents.insert(LocalExpnId::ROOT, (CRATE_DEF_ID, ImplTraitContext::Existential));
@@ -1482,7 +1492,7 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
14821492

14831493
let root_parent_scope = ParentScope::module(graph_root, &resolver);
14841494
resolver.invocation_parent_scopes.insert(LocalExpnId::ROOT, root_parent_scope);
1485-
resolver.feed_visibility(CRATE_DEF_ID, ty::Visibility::Public);
1495+
resolver.feed_visibility(crate_feed, ty::Visibility::Public);
14861496

14871497
resolver
14881498
}
@@ -1530,9 +1540,10 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
15301540
Default::default()
15311541
}
15321542

1533-
fn feed_visibility(&mut self, def_id: LocalDefId, vis: ty::Visibility) {
1534-
self.tcx.feed_local_def_id(def_id).visibility(vis.to_def_id());
1535-
self.visibilities_for_hashing.push((def_id, vis));
1543+
fn feed_visibility(&mut self, feed: Feed<'tcx, LocalDefId>, vis: ty::Visibility) {
1544+
let feed = feed.upgrade(self.tcx);
1545+
feed.visibility(vis.to_def_id());
1546+
self.visibilities_for_hashing.push((feed.def_id(), vis));
15361547
}
15371548

15381549
pub fn into_outputs(self) -> ResolverOutputs {
@@ -1547,7 +1558,8 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
15471558

15481559
self.tcx.feed_local_crate().stripped_cfg_items(self.tcx.arena.alloc_from_iter(
15491560
self.stripped_cfg_items.into_iter().filter_map(|item| {
1550-
let parent_module = self.node_id_to_def_id.get(&item.parent_module)?.to_def_id();
1561+
let parent_module =
1562+
self.node_id_to_def_id.get(&item.parent_module)?.key().to_def_id();
15511563
Some(StrippedCfgItem { parent_module, name: item.name, cfg: item.cfg })
15521564
}),
15531565
));
@@ -1576,7 +1588,11 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
15761588
lifetimes_res_map: self.lifetimes_res_map,
15771589
extra_lifetime_params_map: self.extra_lifetime_params_map,
15781590
next_node_id: self.next_node_id,
1579-
node_id_to_def_id: self.node_id_to_def_id,
1591+
node_id_to_def_id: self
1592+
.node_id_to_def_id
1593+
.into_items()
1594+
.map(|(k, f)| (k, f.key()))
1595+
.collect(),
15801596
def_id_to_node_id: self.def_id_to_node_id,
15811597
trait_map: self.trait_map,
15821598
lifetime_elision_allowed: self.lifetime_elision_allowed,

0 commit comments

Comments
 (0)
Please sign in to comment.