Skip to content

Commit f740326

Browse files
committed
Allow drivers to supply a list of extra symbols to intern
1 parent 87e60a7 commit f740326

File tree

23 files changed

+116
-59
lines changed

23 files changed

+116
-59
lines changed

compiler/rustc_driver_impl/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@ pub fn run_compiler(at_args: &[String], callbacks: &mut (dyn Callbacks + Send))
259259
hash_untracked_state: None,
260260
register_lints: None,
261261
override_queries: None,
262+
extra_symbols: Vec::new(),
262263
make_codegen_backend: None,
263264
registry: diagnostics_registry(),
264265
using_internal_features: &USING_INTERNAL_FEATURES,

compiler/rustc_hir/src/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fn def_path_hash_depends_on_crate_id() {
1717
// the crate by changing the crate disambiguator (e.g. via bumping the
1818
// crate's version number).
1919

20-
create_session_globals_then(Edition::Edition2024, None, || {
20+
create_session_globals_then(Edition::Edition2024, &[], None, || {
2121
let id0 = StableCrateId::new(Symbol::intern("foo"), false, vec!["1".to_string()], "");
2222
let id1 = StableCrateId::new(Symbol::intern("foo"), false, vec!["2".to_string()], "");
2323

compiler/rustc_interface/src/interface.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,10 @@ pub struct Config {
340340
/// the list of queries.
341341
pub override_queries: Option<fn(&Session, &mut Providers)>,
342342

343+
/// An extra set of symbols to add to the symbol interner, the symbol indices
344+
/// will start at [`PREDEFINED_SYMBOLS_COUNT`](rustc_span::symbol::PREDEFINED_SYMBOLS_COUNT)
345+
pub extra_symbols: Vec<&'static str>,
346+
343347
/// This is a callback from the driver that is called to create a codegen backend.
344348
///
345349
/// Has no uses within this repository, but is used by bjorn3 for "the
@@ -401,6 +405,7 @@ pub fn run_compiler<R: Send>(config: Config, f: impl FnOnce(&Compiler) -> R + Se
401405
&early_dcx,
402406
config.opts.edition,
403407
config.opts.unstable_opts.threads,
408+
&config.extra_symbols,
404409
SourceMapInputs { file_loader, path_mapping, hash_kind, checksum_hash_kind },
405410
|current_gcx| {
406411
// The previous `early_dcx` can't be reused here because it doesn't

compiler/rustc_interface/src/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ where
5353
checksum_hash_kind,
5454
});
5555

56-
rustc_span::create_session_globals_then(DEFAULT_EDITION, sm_inputs, || {
56+
rustc_span::create_session_globals_then(DEFAULT_EDITION, &[], sm_inputs, || {
5757
let temps_dir = sessopts.unstable_opts.temps_dir.as_deref().map(PathBuf::from);
5858
let io = CompilerIO {
5959
input: Input::Str { name: FileName::Custom(String::new()), input: String::new() },

compiler/rustc_interface/src/util.rs

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ fn run_in_thread_with_globals<F: FnOnce(CurrentGcx) -> R + Send, R: Send>(
117117
thread_stack_size: usize,
118118
edition: Edition,
119119
sm_inputs: SourceMapInputs,
120+
extra_symbols: &[&'static str],
120121
f: F,
121122
) -> R {
122123
// The "thread pool" is a single spawned thread in the non-parallel
@@ -134,9 +135,12 @@ fn run_in_thread_with_globals<F: FnOnce(CurrentGcx) -> R + Send, R: Send>(
134135
// name contains null bytes.
135136
let r = builder
136137
.spawn_scoped(s, move || {
137-
rustc_span::create_session_globals_then(edition, Some(sm_inputs), || {
138-
f(CurrentGcx::new())
139-
})
138+
rustc_span::create_session_globals_then(
139+
edition,
140+
extra_symbols,
141+
Some(sm_inputs),
142+
|| f(CurrentGcx::new()),
143+
)
140144
})
141145
.unwrap()
142146
.join();
@@ -152,6 +156,7 @@ pub(crate) fn run_in_thread_pool_with_globals<F: FnOnce(CurrentGcx) -> R + Send,
152156
thread_builder_diag: &EarlyDiagCtxt,
153157
edition: Edition,
154158
threads: usize,
159+
extra_symbols: &[&'static str],
155160
sm_inputs: SourceMapInputs,
156161
f: F,
157162
) -> R {
@@ -168,12 +173,18 @@ pub(crate) fn run_in_thread_pool_with_globals<F: FnOnce(CurrentGcx) -> R + Send,
168173
let registry = sync::Registry::new(std::num::NonZero::new(threads).unwrap());
169174

170175
if !sync::is_dyn_thread_safe() {
171-
return run_in_thread_with_globals(thread_stack_size, edition, sm_inputs, |current_gcx| {
172-
// Register the thread for use with the `WorkerLocal` type.
173-
registry.register();
174-
175-
f(current_gcx)
176-
});
176+
return run_in_thread_with_globals(
177+
thread_stack_size,
178+
edition,
179+
sm_inputs,
180+
extra_symbols,
181+
|current_gcx| {
182+
// Register the thread for use with the `WorkerLocal` type.
183+
registry.register();
184+
185+
f(current_gcx)
186+
},
187+
);
177188
}
178189

179190
let current_gcx = FromDyn::from(CurrentGcx::new());
@@ -217,7 +228,7 @@ pub(crate) fn run_in_thread_pool_with_globals<F: FnOnce(CurrentGcx) -> R + Send,
217228
// pool. Upon creation, each worker thread created gets a copy of the
218229
// session globals in TLS. This is possible because `SessionGlobals` impls
219230
// `Send` in the parallel compiler.
220-
rustc_span::create_session_globals_then(edition, Some(sm_inputs), || {
231+
rustc_span::create_session_globals_then(edition, extra_symbols, Some(sm_inputs), || {
221232
rustc_span::with_session_globals(|session_globals| {
222233
let session_globals = FromDyn::from(session_globals);
223234
builder

compiler/rustc_macros/src/symbols.rs

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ pub(super) fn symbols(input: TokenStream) -> TokenStream {
142142
output
143143
}
144144

145-
struct Preinterned {
145+
struct Predefined {
146146
idx: u32,
147147
span_of_name: Span,
148148
}
149149

150150
struct Entries {
151-
map: HashMap<String, Preinterned>,
151+
map: HashMap<String, Predefined>,
152152
}
153153

154154
impl Entries {
@@ -163,7 +163,7 @@ impl Entries {
163163
prev.idx
164164
} else {
165165
let idx = self.len();
166-
self.map.insert(s.to_string(), Preinterned { idx, span_of_name: span });
166+
self.map.insert(s.to_string(), Predefined { idx, span_of_name: span });
167167
idx
168168
}
169169
}
@@ -295,10 +295,14 @@ fn symbols_with_errors(input: TokenStream) -> (TokenStream, Vec<syn::Error>) {
295295
}
296296

297297
let symbol_digits_base = entries.map["0"].idx;
298-
let preinterned_symbols_count = entries.len();
298+
let predefined_symbols_count = entries.len();
299299
let output = quote! {
300300
const SYMBOL_DIGITS_BASE: u32 = #symbol_digits_base;
301-
const PREINTERNED_SYMBOLS_COUNT: u32 = #preinterned_symbols_count;
301+
302+
/// The number of predefined symbols; this is the the first index for
303+
/// extra pre-interned symbols in an Interner created via
304+
/// [`Interner::with_extra_symbols`].
305+
pub const PREDEFINED_SYMBOLS_COUNT: u32 = #predefined_symbols_count;
302306

303307
#[doc(hidden)]
304308
#[allow(non_upper_case_globals)]
@@ -315,10 +319,13 @@ fn symbols_with_errors(input: TokenStream) -> (TokenStream, Vec<syn::Error>) {
315319
}
316320

317321
impl Interner {
318-
pub(crate) fn fresh() -> Self {
319-
Interner::prefill(&[
320-
#prefill_stream
321-
])
322+
/// Creates an `Interner` with the predefined symbols from the `symbols!` macro and
323+
/// any extra symbols provided by external drivers such as Clippy
324+
pub(crate) fn with_extra_symbols(extra_symbols: &[&'static str]) -> Self {
325+
Interner::prefill(
326+
&[#prefill_stream],
327+
extra_symbols,
328+
)
322329
}
323330
}
324331
};

compiler/rustc_metadata/src/rmeta/decoder.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,9 +562,9 @@ impl<'a, 'tcx> SpanDecoder for DecodeContext<'a, 'tcx> {
562562
Symbol::intern(s)
563563
})
564564
}
565-
SYMBOL_PREINTERNED => {
565+
SYMBOL_PREDEFINED => {
566566
let symbol_index = self.read_u32();
567-
Symbol::new_from_decoded(symbol_index)
567+
Symbol::new(symbol_index)
568568
}
569569
_ => unreachable!(),
570570
}

compiler/rustc_metadata/src/rmeta/encoder.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,9 @@ impl<'a, 'tcx> SpanEncoder for EncodeContext<'a, 'tcx> {
201201
}
202202

203203
fn encode_symbol(&mut self, symbol: Symbol) {
204-
// if symbol preinterned, emit tag and symbol index
205-
if symbol.is_preinterned() {
206-
self.opaque.emit_u8(SYMBOL_PREINTERNED);
204+
// if symbol predefined, emit tag and symbol index
205+
if symbol.is_predefined() {
206+
self.opaque.emit_u8(SYMBOL_PREDEFINED);
207207
self.opaque.emit_u32(symbol.as_u32());
208208
} else {
209209
// otherwise write it as string or as offset to it

compiler/rustc_metadata/src/rmeta/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ impl SpanTag {
576576
// Tags for encoding Symbol's
577577
const SYMBOL_STR: u8 = 0;
578578
const SYMBOL_OFFSET: u8 = 1;
579-
const SYMBOL_PREINTERNED: u8 = 2;
579+
const SYMBOL_PREDEFINED: u8 = 2;
580580

581581
pub fn provide(providers: &mut Providers) {
582582
encoder::provide(providers);

compiler/rustc_middle/src/query/on_disk_cache.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const TAG_EXPN_DATA: u8 = 1;
4545
// Tags for encoding Symbol's
4646
const SYMBOL_STR: u8 = 0;
4747
const SYMBOL_OFFSET: u8 = 1;
48-
const SYMBOL_PREINTERNED: u8 = 2;
48+
const SYMBOL_PREDEFINED: u8 = 2;
4949

5050
/// Provides an interface to incremental compilation data cached from the
5151
/// previous compilation session. This data will eventually include the results
@@ -673,9 +673,9 @@ impl<'a, 'tcx> SpanDecoder for CacheDecoder<'a, 'tcx> {
673673
Symbol::intern(s)
674674
})
675675
}
676-
SYMBOL_PREINTERNED => {
676+
SYMBOL_PREDEFINED => {
677677
let symbol_index = self.read_u32();
678-
Symbol::new_from_decoded(symbol_index)
678+
Symbol::new(symbol_index)
679679
}
680680
_ => unreachable!(),
681681
}
@@ -891,9 +891,9 @@ impl<'a, 'tcx> SpanEncoder for CacheEncoder<'a, 'tcx> {
891891

892892
// copy&paste impl from rustc_metadata
893893
fn encode_symbol(&mut self, symbol: Symbol) {
894-
// if symbol preinterned, emit tag and symbol index
895-
if symbol.is_preinterned() {
896-
self.encoder.emit_u8(SYMBOL_PREINTERNED);
894+
// if symbol predefined, emit tag and symbol index
895+
if symbol.is_predefined() {
896+
self.encoder.emit_u8(SYMBOL_PREDEFINED);
897897
self.encoder.emit_u32(symbol.as_u32());
898898
} else {
899899
// otherwise write it as string or as offset to it

0 commit comments

Comments
 (0)