Skip to content

Commit 9b35aff

Browse files
committed
Auto merge of #121089 - oli-obk:create_def_feed, r=<try>
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 e29a153 + a0aeca0 commit 9b35aff

File tree

13 files changed

+193
-82
lines changed

13 files changed

+193
-82
lines changed

compiler/rustc_ast_lowering/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ pub fn lower_to_hir(tcx: TyCtxt<'_>, (): ()) -> hir::Crate<'_> {
427427
tcx.ensure_with_value().early_lint_checks(());
428428
tcx.ensure_with_value().debugger_visualizers(LOCAL_CRATE);
429429
tcx.ensure_with_value().get_lang_items(());
430-
let (mut resolver, krate) = tcx.resolver_for_lowering(()).steal();
430+
let (mut resolver, krate) = tcx.resolver_for_lowering(()).0.steal();
431431

432432
let ast_index = index_crate(&resolver.node_id_to_def_id, &krate);
433433
let mut owners = IndexVec::from_fn_n(

compiler/rustc_driver_impl/src/pretty.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ impl<'tcx> PrintExtra<'tcx> {
229229
{
230230
match self {
231231
PrintExtra::AfterParsing { krate, .. } => f(krate),
232-
PrintExtra::NeedsAstMap { tcx } => f(&tcx.resolver_for_lowering(()).borrow().1),
232+
PrintExtra::NeedsAstMap { tcx } => f(&tcx.resolver_for_lowering(()).0.borrow().1),
233233
}
234234
}
235235

@@ -279,7 +279,7 @@ pub fn print<'tcx>(sess: &Session, ppm: PpMode, ex: PrintExtra<'tcx>) {
279279
}
280280
AstTreeExpanded => {
281281
debug!("pretty-printing expanded AST");
282-
format!("{:#?}", ex.tcx().resolver_for_lowering(()).borrow().1)
282+
format!("{:#?}", ex.tcx().resolver_for_lowering(()).0.borrow().1)
283283
}
284284
Hir(s) => {
285285
debug!("pretty printing HIR {:?}", s);

compiler/rustc_interface/src/passes.rs

+16-5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ use crate::interface::{Compiler, Result};
33
use crate::proc_macro_decls;
44
use crate::util;
55

6+
use ast::expand::StrippedCfgItem;
67
use rustc_ast::{self as ast, visit};
78
use rustc_borrowck as mir_borrowck;
89
use rustc_codegen_ssa::traits::CodegenBackend;
@@ -18,6 +19,7 @@ use rustc_lint::{unerased_lint_store, BufferedEarlyLint, EarlyCheckNode, LintSto
1819
use rustc_metadata::creader::CStore;
1920
use rustc_middle::arena::Arena;
2021
use rustc_middle::dep_graph::DepGraph;
22+
use rustc_middle::query::LocalCrate;
2123
use rustc_middle::ty::{self, GlobalCtxt, RegisteredTools, TyCtxt};
2224
use rustc_middle::util::Providers;
2325
use rustc_mir_build as mir_build;
@@ -280,7 +282,7 @@ fn configure_and_expand(
280282

281283
fn early_lint_checks(tcx: TyCtxt<'_>, (): ()) {
282284
let sess = tcx.sess;
283-
let (resolver, krate) = &*tcx.resolver_for_lowering(()).borrow();
285+
let (resolver, krate) = &*tcx.resolver_for_lowering(()).0.borrow();
284286
let mut lint_buffer = resolver.lint_buffer.steal();
285287

286288
if sess.opts.unstable_opts.input_stats {
@@ -534,7 +536,7 @@ fn write_out_deps(tcx: TyCtxt<'_>, outputs: &OutputFilenames, out_filenames: &[P
534536
fn resolver_for_lowering<'tcx>(
535537
tcx: TyCtxt<'tcx>,
536538
(): (),
537-
) -> &'tcx Steal<(ty::ResolverAstLowering, Lrc<ast::Crate>)> {
539+
) -> (&'tcx Steal<(ty::ResolverAstLowering, Lrc<ast::Crate>)>, &'tcx ty::ResolverGlobalCtxt) {
538540
let arenas = Resolver::arenas();
539541
let _ = tcx.registered_tools(()); // Uses `crate_for_resolver`.
540542
let (krate, pre_configured_attrs) = tcx.crate_for_resolver(()).steal();
@@ -549,9 +551,16 @@ fn resolver_for_lowering<'tcx>(
549551
ast_lowering: untracked_resolver_for_lowering,
550552
} = resolver.into_outputs();
551553

552-
let feed = tcx.feed_unit_query();
553-
feed.resolutions(tcx.arena.alloc(untracked_resolutions));
554-
tcx.arena.alloc(Steal::new((untracked_resolver_for_lowering, Lrc::new(krate))))
554+
let resolutions = tcx.arena.alloc(untracked_resolutions);
555+
(tcx.arena.alloc(Steal::new((untracked_resolver_for_lowering, Lrc::new(krate)))), resolutions)
556+
}
557+
558+
fn stripped_cfg_items(tcx: TyCtxt<'_>, _: LocalCrate) -> &[StrippedCfgItem] {
559+
tcx.arena.alloc_from_iter(tcx.resolutions(()).stripped_cfg_items.steal())
560+
}
561+
562+
fn resolutions(tcx: TyCtxt<'_>, _: ()) -> &ty::ResolverGlobalCtxt {
563+
tcx.resolver_for_lowering(()).1
555564
}
556565

557566
pub(crate) fn write_dep_info(tcx: TyCtxt<'_>) {
@@ -608,6 +617,8 @@ pub static DEFAULT_QUERY_PROVIDERS: LazyLock<Providers> = LazyLock::new(|| {
608617
providers.analysis = analysis;
609618
providers.hir_crate = rustc_ast_lowering::lower_to_hir;
610619
providers.resolver_for_lowering = resolver_for_lowering;
620+
providers.stripped_cfg_items = stripped_cfg_items;
621+
providers.resolutions = resolutions;
611622
providers.early_lint_checks = early_lint_checks;
612623
proc_macro_decls::provide(providers);
613624
rustc_const_eval::provide(providers);

compiler/rustc_interface/src/queries.rs

+3-9
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ use rustc_codegen_ssa::CodegenResults;
88
use rustc_data_structures::steal::Steal;
99
use rustc_data_structures::svh::Svh;
1010
use rustc_data_structures::sync::{AppendOnlyIndexVec, FreezeLock, OnceLock, WorkerLocal};
11-
use rustc_hir::def::DefKind;
12-
use rustc_hir::def_id::{StableCrateId, CRATE_DEF_ID, LOCAL_CRATE};
11+
use rustc_hir::def_id::{StableCrateId, LOCAL_CRATE};
1312
use rustc_hir::definitions::Definitions;
1413
use rustc_incremental::setup_dep_graph;
1514
use rustc_metadata::creader::CStore;
@@ -144,10 +143,8 @@ impl<'tcx> Queries<'tcx> {
144143
stable_crate_id,
145144
)) as _);
146145
let definitions = FreezeLock::new(Definitions::new(stable_crate_id));
147-
let source_span = AppendOnlyIndexVec::new();
148-
let _id = source_span.push(krate.spans.inner_span);
149-
debug_assert_eq!(_id, CRATE_DEF_ID);
150-
let untracked = Untracked { cstore, source_span, definitions };
146+
let untracked =
147+
Untracked { cstore, source_span: AppendOnlyIndexVec::new(), definitions };
151148

152149
let qcx = passes::create_global_ctxt(
153150
self.compiler,
@@ -172,9 +169,6 @@ impl<'tcx> Queries<'tcx> {
172169
)));
173170
feed.crate_for_resolver(tcx.arena.alloc(Steal::new((krate, pre_configured_attrs))));
174171
feed.output_filenames(Arc::new(outputs));
175-
176-
let feed = tcx.feed_local_def_id(CRATE_DEF_ID);
177-
feed.def_kind(DefKind::Mod);
178172
});
179173
Ok(qcx)
180174
})

compiler/rustc_middle/src/query/mod.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,11 @@ rustc_queries! {
125125
}
126126

127127
query resolutions(_: ()) -> &'tcx ty::ResolverGlobalCtxt {
128-
feedable
129128
no_hash
130129
desc { "getting the resolver outputs" }
131130
}
132131

133-
query resolver_for_lowering(_: ()) -> &'tcx Steal<(ty::ResolverAstLowering, Lrc<ast::Crate>)> {
132+
query resolver_for_lowering(_: ()) -> (&'tcx Steal<(ty::ResolverAstLowering, Lrc<ast::Crate>)>, &'tcx ty::ResolverGlobalCtxt) {
134133
eval_always
135134
no_hash
136135
desc { "getting the resolver for lowering" }
@@ -2211,7 +2210,6 @@ rustc_queries! {
22112210
/// Should not be called for the local crate before the resolver outputs are created, as it
22122211
/// is only fed there.
22132212
query stripped_cfg_items(cnum: CrateNum) -> &'tcx [StrippedCfgItem] {
2214-
feedable
22152213
desc { "getting cfg-ed out item names" }
22162214
separate_provide_extern
22172215
}

compiler/rustc_middle/src/ty/context.rs

+62-3
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,14 +523,55 @@ pub struct TyCtxtFeed<'tcx, KEY: Copy> {
522523
key: KEY,
523524
}
524525

526+
/// Never return a `Feed` from a query. Only queries that create a `DefId` are
527+
/// allowed to feed queries for that `DefId`.
528+
impl<KEY: Copy, CTX> !HashStable<CTX> for TyCtxtFeed<'_, KEY> {}
529+
530+
/// The same as `TyCtxtFeed`, but does not contain a `TyCtxt`.
531+
/// Use this to pass around when you have a `TyCtxt` elsewhere.
532+
/// Just an optimization to save space and not store hundreds of
533+
/// `TyCtxtFeed` in the resolver.
534+
#[derive(Copy, Clone)]
535+
pub struct Feed<'tcx, KEY: Copy> {
536+
_tcx: PhantomData<TyCtxt<'tcx>>,
537+
// Do not allow direct access, as downstream code must not mutate this field.
538+
key: KEY,
539+
}
540+
541+
/// Never return a `Feed` from a query. Only queries that create a `DefId` are
542+
/// allowed to feed queries for that `DefId`.
543+
impl<KEY: Copy, CTX> !HashStable<CTX> for Feed<'_, KEY> {}
544+
545+
impl<T: fmt::Debug + Copy> fmt::Debug for Feed<'_, T> {
546+
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
547+
self.key.fmt(f)
548+
}
549+
}
550+
551+
/// Some workarounds to use cases that cannot use `create_def`.
552+
/// Do not add new ways to create `TyCtxtFeed` without consulting
553+
/// with T-compiler and making an analysis about why your addition
554+
/// does not cause incremental compilation issues.
525555
impl<'tcx> TyCtxt<'tcx> {
556+
/// Can only be fed before queries are run, and is thus exempt from any
557+
/// incremental issues. Do not use except for the initial query feeding.
526558
pub fn feed_unit_query(self) -> TyCtxtFeed<'tcx, ()> {
559+
self.dep_graph.assert_ignored();
527560
TyCtxtFeed { tcx: self, key: () }
528561
}
562+
563+
/// Can only be fed before queries are run, and is thus exempt from any
564+
/// incremental issues. Do not use except for the initial query feeding.
529565
pub fn feed_local_crate(self) -> TyCtxtFeed<'tcx, CrateNum> {
566+
self.dep_graph.assert_ignored();
530567
TyCtxtFeed { tcx: self, key: LOCAL_CRATE }
531568
}
532-
pub fn feed_local_def_id(self, key: LocalDefId) -> TyCtxtFeed<'tcx, LocalDefId> {
569+
570+
/// Only used in the resolver to register the `CRATE_DEF_ID` `DefId` and feed
571+
/// some queries for it. It will panic if used twice.
572+
pub fn create_local_crate_def_id(self, span: Span) -> TyCtxtFeed<'tcx, LocalDefId> {
573+
let key = self.untracked().source_span.push(span);
574+
assert_eq!(key, CRATE_DEF_ID);
533575
TyCtxtFeed { tcx: self, key }
534576
}
535577

@@ -547,6 +589,23 @@ impl<'tcx, KEY: Copy> TyCtxtFeed<'tcx, KEY> {
547589
pub fn key(&self) -> KEY {
548590
self.key
549591
}
592+
593+
#[inline(always)]
594+
pub fn downgrade(self) -> Feed<'tcx, KEY> {
595+
Feed { _tcx: PhantomData, key: self.key }
596+
}
597+
}
598+
599+
impl<'tcx, KEY: Copy> Feed<'tcx, KEY> {
600+
#[inline(always)]
601+
pub fn key(&self) -> KEY {
602+
self.key
603+
}
604+
605+
#[inline(always)]
606+
pub fn upgrade(self, tcx: TyCtxt<'tcx>) -> TyCtxtFeed<'tcx, KEY> {
607+
TyCtxtFeed { tcx, key: self.key }
608+
}
550609
}
551610

552611
impl<'tcx> TyCtxtFeed<'tcx, LocalDefId> {
@@ -1091,7 +1150,7 @@ impl<'tcx> TyCtxt<'tcx> {
10911150
// needs to be re-evaluated.
10921151
self.dep_graph.read_index(DepNodeIndex::FOREVER_RED_NODE);
10931152

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

compiler/rustc_middle/src/ty/mod.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ use crate::ty::fast_reject::SimplifiedType;
2828
use crate::ty::util::Discr;
2929
pub use adt::*;
3030
pub use assoc::*;
31+
use ast::expand::StrippedCfgItem;
3132
pub use generic_args::*;
3233
pub use generics::*;
3334
use rustc_ast as ast;
@@ -84,7 +85,8 @@ pub use self::consts::{
8485
Const, ConstData, ConstInt, ConstKind, Expr, ScalarInt, UnevaluatedConst, ValTree,
8586
};
8687
pub use self::context::{
87-
tls, CtxtInterners, DeducedParamAttrs, FreeRegionInfo, GlobalCtxt, Lift, TyCtxt, TyCtxtFeed,
88+
tls, CtxtInterners, DeducedParamAttrs, Feed, FreeRegionInfo, GlobalCtxt, Lift, TyCtxt,
89+
TyCtxtFeed,
8890
};
8991
pub use self::instance::{Instance, InstanceDef, ShortInstance, UnusedGenericParams};
9092
pub use self::list::List;
@@ -187,6 +189,7 @@ pub struct ResolverGlobalCtxt {
187189
pub doc_link_resolutions: FxHashMap<LocalDefId, DocLinkResMap>,
188190
pub doc_link_traits_in_scope: FxHashMap<LocalDefId, Vec<DefId>>,
189191
pub all_macro_rules: FxHashMap<Symbol, Res<ast::NodeId>>,
192+
pub stripped_cfg_items: Steal<Vec<StrippedCfgItem>>,
190193
}
191194

192195
/// Resolutions that should only be used for lowering.

compiler/rustc_passes/src/debugger_visualizer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ impl<'ast> rustc_ast::visit::Visitor<'ast> for DebuggerVisualizerCollector<'_> {
8787

8888
/// Traverses and collects the debugger visualizers for a specific crate.
8989
fn debugger_visualizers(tcx: TyCtxt<'_>, _: LocalCrate) -> Vec<DebuggerVisualizerFile> {
90-
let resolver_and_krate = tcx.resolver_for_lowering(()).borrow();
90+
let resolver_and_krate = tcx.resolver_for_lowering(()).0.borrow();
9191
let krate = &*resolver_and_krate.1;
9292

9393
let mut visitor = DebuggerVisualizerCollector { sess: tcx.sess, visualizers: Vec::new() };

compiler/rustc_passes/src/lang_items.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ impl<'ast, 'tcx> LanguageItemCollector<'ast, 'tcx> {
243243

244244
/// Traverses and collects all the lang items in all crates.
245245
fn get_lang_items(tcx: TyCtxt<'_>, (): ()) -> LanguageItems {
246-
let resolver = tcx.resolver_for_lowering(()).borrow();
246+
let resolver = tcx.resolver_for_lowering(()).0.borrow();
247247
let (resolver, krate) = &*resolver;
248248

249249
// Initialize the collector.

0 commit comments

Comments
 (0)