Skip to content

Commit d213114

Browse files
LocalCrate key
1 parent dcaf956 commit d213114

File tree

11 files changed

+33
-21
lines changed

11 files changed

+33
-21
lines changed

compiler/rustc_codegen_ssa/src/back/symbol_export.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ use rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrFlags;
1010
use rustc_middle::middle::exported_symbols::{
1111
metadata_symbol_name, ExportedSymbol, SymbolExportInfo, SymbolExportKind, SymbolExportLevel,
1212
};
13+
use rustc_middle::query::LocalCrate;
1314
use rustc_middle::ty::query::{ExternProviders, Providers};
1415
use rustc_middle::ty::subst::{GenericArgKind, SubstsRef};
1516
use rustc_middle::ty::Instance;
@@ -41,7 +42,7 @@ pub fn crates_export_threshold(crate_types: &[CrateType]) -> SymbolExportLevel {
4142
}
4243
}
4344

44-
fn reachable_non_generics_provider(tcx: TyCtxt<'_>, (): ()) -> DefIdMap<SymbolExportInfo> {
45+
fn reachable_non_generics_provider(tcx: TyCtxt<'_>, _: LocalCrate) -> DefIdMap<SymbolExportInfo> {
4546
if !tcx.sess.opts.output_types.should_codegen() {
4647
return Default::default();
4748
}
@@ -168,7 +169,7 @@ fn is_reachable_non_generic_provider_extern(tcx: TyCtxt<'_>, def_id: DefId) -> b
168169

169170
fn exported_symbols_provider_local(
170171
tcx: TyCtxt<'_>,
171-
(): (),
172+
_: LocalCrate,
172173
) -> &[(ExportedSymbol<'_>, SymbolExportInfo)] {
173174
if !tcx.sess.opts.output_types.should_codegen() {
174175
return &[];

compiler/rustc_metadata/src/rmeta/decoder/cstore_impl.rs

+6-5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ use rustc_middle::arena::ArenaAllocatable;
1313
use rustc_middle::metadata::ModChild;
1414
use rustc_middle::middle::exported_symbols::ExportedSymbol;
1515
use rustc_middle::middle::stability::DeprecationEntry;
16+
use rustc_middle::query::LocalCrate;
1617
use rustc_middle::ty::fast_reject::SimplifiedType;
1718
use rustc_middle::ty::query::{ExternProviders, Providers};
1819
use rustc_middle::ty::{self, TyCtxt};
@@ -367,7 +368,7 @@ pub(in crate::rmeta) fn provide(providers: &mut Providers) {
367368
*providers = Providers {
368369
allocator_kind: |tcx, ()| CStore::from_tcx(tcx).allocator_kind(),
369370
alloc_error_handler_kind: |tcx, ()| CStore::from_tcx(tcx).alloc_error_handler_kind(),
370-
is_private_dep: |_tcx, ()| false,
371+
is_private_dep: |_tcx, LocalCrate| false,
371372
native_library: |tcx, id| {
372373
tcx.native_libraries(id.krate)
373374
.iter()
@@ -383,8 +384,8 @@ pub(in crate::rmeta) fn provide(providers: &mut Providers) {
383384
.contains(&id)
384385
})
385386
},
386-
native_libraries: |tcx, ()| native_libs::collect(tcx),
387-
foreign_modules: |tcx, ()| {
387+
native_libraries: |tcx, LocalCrate| native_libs::collect(tcx),
388+
foreign_modules: |tcx, LocalCrate| {
388389
foreign_modules::collect(tcx).into_iter().map(|m| (m.def_id, m)).collect()
389390
},
390391

@@ -482,8 +483,8 @@ pub(in crate::rmeta) fn provide(providers: &mut Providers) {
482483
},
483484

484485
dependency_formats: |tcx, ()| Lrc::new(crate::dependency_format::calculate(tcx)),
485-
has_global_allocator: |tcx, ()| CStore::from_tcx(tcx).has_global_allocator(),
486-
has_alloc_error_handler: |tcx, ()| CStore::from_tcx(tcx).has_alloc_error_handler(),
486+
has_global_allocator: |tcx, LocalCrate| CStore::from_tcx(tcx).has_global_allocator(),
487+
has_alloc_error_handler: |tcx, LocalCrate| CStore::from_tcx(tcx).has_alloc_error_handler(),
487488
postorder_cnums: |tcx, ()| {
488489
tcx.arena
489490
.alloc_slice(&CStore::from_tcx(tcx).crate_dependencies_in_postorder(LOCAL_CRATE))

compiler/rustc_metadata/src/rmeta/encoder.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ use rustc_middle::middle::exported_symbols::{
2424
metadata_symbol_name, ExportedSymbol, SymbolExportInfo,
2525
};
2626
use rustc_middle::mir::interpret;
27+
use rustc_middle::query::LocalCrate;
2728
use rustc_middle::traits::specialization_graph;
2829
use rustc_middle::ty::codec::TyEncoder;
2930
use rustc_middle::ty::fast_reject::{self, SimplifiedType, TreatParams, TreatProjections};
@@ -2240,7 +2241,7 @@ pub fn provide(providers: &mut Providers) {
22402241
.get(&def_id)
22412242
.expect("no traits in scope for a doc link")
22422243
},
2243-
traits_in_crate: |tcx, ()| {
2244+
traits_in_crate: |tcx, LocalCrate| {
22442245
let mut traits = Vec::new();
22452246
for id in tcx.hir().items() {
22462247
if matches!(tcx.def_kind(id.owner_id), DefKind::Trait | DefKind::TraitAlias) {
@@ -2252,7 +2253,7 @@ pub fn provide(providers: &mut Providers) {
22522253
traits.sort_by_cached_key(|&def_id| tcx.def_path_hash(def_id));
22532254
tcx.arena.alloc_slice(&traits)
22542255
},
2255-
trait_impls_in_crate: |tcx, ()| {
2256+
trait_impls_in_crate: |tcx, LocalCrate| {
22562257
let mut trait_impls = Vec::new();
22572258
for id in tcx.hir().items() {
22582259
if matches!(tcx.def_kind(id.owner_id), DefKind::Impl { .. })

compiler/rustc_middle/src/hir/map/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
use crate::hir::{ModuleItems, Owner};
2+
use crate::query::LocalCrate;
23
use crate::ty::TyCtxt;
34
use rustc_ast as ast;
45
use rustc_data_structures::fingerprint::Fingerprint;
@@ -1131,7 +1132,7 @@ impl<'hir> intravisit::Map<'hir> for Map<'hir> {
11311132
}
11321133
}
11331134

1134-
pub(super) fn crate_hash(tcx: TyCtxt<'_>, (): ()) -> Svh {
1135+
pub(super) fn crate_hash(tcx: TyCtxt<'_>, _: LocalCrate) -> Svh {
11351136
let krate = tcx.hir_crate(());
11361137
let hir_body_hash = krate.opt_hir_hash.expect("HIR hash missing while computing crate hash");
11371138

compiler/rustc_middle/src/query/keys.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ use rustc_query_system::query::{DefaultCacheSelector, SingleCacheSelector, VecCa
1313
use rustc_span::symbol::{Ident, Symbol};
1414
use rustc_span::{Span, DUMMY_SP};
1515

16+
/// Placeholder for `CrateNum`'s "local" counterpart
17+
#[derive(Copy, Clone, Debug)]
18+
pub struct LocalCrate;
19+
1620
/// The `Key` trait controls what types can legally be used as the key
1721
/// for a query.
1822
pub trait Key: Sized {
@@ -115,11 +119,11 @@ impl Key for CrateNum {
115119
}
116120

117121
impl AsLocalKey for CrateNum {
118-
type LocalKey = ();
122+
type LocalKey = LocalCrate;
119123

120124
#[inline(always)]
121125
fn as_local_key(&self) -> Option<Self::LocalKey> {
122-
(*self == LOCAL_CRATE).then_some(())
126+
(*self == LOCAL_CRATE).then_some(LocalCrate)
123127
}
124128
}
125129

compiler/rustc_middle/src/query/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use crate::ty::{self, print::describe_as_module, TyCtxt};
88
use rustc_span::def_id::LOCAL_CRATE;
99

1010
mod keys;
11-
pub use keys::{AsLocalKey, Key};
11+
pub use keys::{AsLocalKey, Key, LocalCrate};
1212

1313
// Each of these queries corresponds to a function pointer field in the
1414
// `Providers` struct for requesting a value of that type, and a method

compiler/rustc_middle/src/ty/context.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ use crate::mir::interpret::{self, Allocation, ConstAllocation};
1515
use crate::mir::{
1616
Body, BorrowCheckResult, Field, Local, Place, PlaceElem, ProjectionKind, Promoted,
1717
};
18+
use crate::query::LocalCrate;
1819
use crate::thir::Thir;
1920
use crate::traits;
2021
use crate::traits::solve;
@@ -2519,10 +2520,10 @@ pub fn provide(providers: &mut ty::query::Providers) {
25192520
providers.extern_mod_stmt_cnum =
25202521
|tcx, id| tcx.resolutions(()).extern_crate_map.get(&id).cloned();
25212522
providers.is_panic_runtime =
2522-
|tcx, ()| tcx.sess.contains_name(tcx.hir().krate_attrs(), sym::panic_runtime);
2523+
|tcx, LocalCrate| tcx.sess.contains_name(tcx.hir().krate_attrs(), sym::panic_runtime);
25232524
providers.is_compiler_builtins =
2524-
|tcx, ()| tcx.sess.contains_name(tcx.hir().krate_attrs(), sym::compiler_builtins);
2525-
providers.has_panic_handler = |tcx, ()| {
2525+
|tcx, LocalCrate| tcx.sess.contains_name(tcx.hir().krate_attrs(), sym::compiler_builtins);
2526+
providers.has_panic_handler = |tcx, LocalCrate| {
25262527
// We want to check if the panic handler was defined in this crate
25272528
tcx.lang_items().panic_impl().map_or(false, |did| did.is_local())
25282529
};

compiler/rustc_mir_transform/src/ffi_unwind_calls.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use rustc_hir::def_id::{LocalDefId, LOCAL_CRATE};
22
use rustc_middle::mir::*;
3+
use rustc_middle::query::LocalCrate;
34
use rustc_middle::ty::layout;
45
use rustc_middle::ty::query::Providers;
56
use rustc_middle::ty::{self, TyCtxt};
@@ -121,7 +122,7 @@ fn has_ffi_unwind_calls(tcx: TyCtxt<'_>, local_def_id: LocalDefId) -> bool {
121122
tainted
122123
}
123124

124-
fn required_panic_strategy(tcx: TyCtxt<'_>, (): ()) -> Option<PanicStrategy> {
125+
fn required_panic_strategy(tcx: TyCtxt<'_>, _: LocalCrate) -> Option<PanicStrategy> {
125126
if tcx.is_panic_runtime(LOCAL_CRATE) {
126127
return Some(tcx.sess.panic_strategy());
127128
}

compiler/rustc_passes/src/debugger_visualizer.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ use rustc_data_structures::fx::FxHashSet;
55
use rustc_expand::base::resolve_path;
66
use rustc_hir as hir;
77
use rustc_hir::HirId;
8-
use rustc_middle::ty::query::Providers;
98
use rustc_middle::ty::TyCtxt;
9+
use rustc_middle::{query::LocalCrate, ty::query::Providers};
1010
use rustc_span::{sym, DebuggerVisualizerFile, DebuggerVisualizerType};
1111

1212
use std::sync::Arc;
@@ -67,7 +67,7 @@ fn check_for_debugger_visualizer(
6767
}
6868

6969
/// Traverses and collects the debugger visualizers for a specific crate.
70-
fn debugger_visualizers(tcx: TyCtxt<'_>, (): ()) -> Vec<DebuggerVisualizerFile> {
70+
fn debugger_visualizers(tcx: TyCtxt<'_>, _: LocalCrate) -> Vec<DebuggerVisualizerFile> {
7171
// Initialize the collector.
7272
let mut debugger_visualizers = FxHashSet::default();
7373

compiler/rustc_passes/src/diagnostic_items.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
use rustc_ast as ast;
1313
use rustc_hir::diagnostic_items::DiagnosticItems;
1414
use rustc_hir::OwnerId;
15+
use rustc_middle::query::LocalCrate;
1516
use rustc_middle::ty::query::Providers;
1617
use rustc_middle::ty::TyCtxt;
1718
use rustc_span::def_id::{DefId, LOCAL_CRATE};
@@ -62,7 +63,7 @@ fn extract(attrs: &[ast::Attribute]) -> Option<Symbol> {
6263
}
6364

6465
/// Traverse and collect the diagnostic items in the current
65-
fn diagnostic_items(tcx: TyCtxt<'_>, (): ()) -> DiagnosticItems {
66+
fn diagnostic_items(tcx: TyCtxt<'_>, _: LocalCrate) -> DiagnosticItems {
6667
// Initialize the collector.
6768
let mut diagnostic_items = DiagnosticItems::default();
6869

src/tools/miri/src/bin/miri.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ use rustc_middle::{
2929
ExportedSymbol, SymbolExportInfo, SymbolExportKind, SymbolExportLevel,
3030
},
3131
ty::{query::ExternProviders, TyCtxt},
32+
query::LocalCrate,
3233
};
3334
use rustc_session::{config::CrateType, search_paths::PathKind, CtfeBacktrace};
3435

@@ -107,7 +108,7 @@ impl rustc_driver::Callbacks for MiriBeRustCompilerCalls {
107108
config.override_queries = Some(|_, local_providers, _| {
108109
// `exported_symbols` and `reachable_non_generics` provided by rustc always returns
109110
// an empty result if `tcx.sess.opts.output_types.should_codegen()` is false.
110-
local_providers.exported_symbols = |tcx, ()| {
111+
local_providers.exported_symbols = |tcx, LocalCrate| {
111112
let reachable_set = tcx.with_stable_hashing_context(|hcx| {
112113
tcx.reachable_set(()).to_sorted(&hcx, true)
113114
});

0 commit comments

Comments
 (0)