Skip to content

Commit 9b0ced0

Browse files
committed
Move initialize_checked_jobserver.
Currently it's a method on `EarlyDiagCtxt`, which is not the right place for it at all -- `EarlyDiagCtxt` is used to issue diagnostics, but shouldn't be doing any of the actual checking. This commit moves it into a standalone function that takes an `EarlyDiagCtxt` as an argument, which is more sensible. This does require adding `EarlyDiagCtxt::early_struct_warn`, so a warning can be returned and then modified with a note. (And that likely explains why somebody put `initialize_checked_jobserver` into `EarlyDiagCtxt` in the first place.)
1 parent 62c32ae commit 9b0ced0

File tree

3 files changed

+20
-13
lines changed

3 files changed

+20
-13
lines changed

compiler/rustc_interface/src/interface.rs

+14-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ use rustc_ast::{LitKind, MetaItemKind};
55
use rustc_codegen_ssa::traits::CodegenBackend;
66
use rustc_data_structures::defer;
77
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
8+
use rustc_data_structures::jobserver;
89
use rustc_data_structures::stable_hasher::StableHasher;
910
use rustc_data_structures::sync::Lrc;
1011
use rustc_errors::registry::Registry;
@@ -323,6 +324,18 @@ pub struct Config {
323324
pub expanded_args: Vec<String>,
324325
}
325326

327+
/// Initialize jobserver before getting `jobserver::client` and `build_session`.
328+
pub(crate) fn initialize_checked_jobserver(early_dcx: &EarlyDiagCtxt) {
329+
jobserver::initialize_checked(|err| {
330+
#[allow(rustc::untranslatable_diagnostic)]
331+
#[allow(rustc::diagnostic_outside_of_impl)]
332+
early_dcx
333+
.early_struct_warn(err)
334+
.with_note("the build environment is likely misconfigured")
335+
.emit()
336+
});
337+
}
338+
326339
// JUSTIFICATION: before session exists, only config
327340
#[allow(rustc::bad_opt_access)]
328341
#[allow(rustc::untranslatable_diagnostic)] // FIXME: make this translatable
@@ -334,7 +347,7 @@ pub fn run_compiler<R: Send>(config: Config, f: impl FnOnce(&Compiler) -> R + Se
334347

335348
// Check jobserver before run_in_thread_pool_with_globals, which call jobserver::acquire_thread
336349
let early_dcx = EarlyDiagCtxt::new(config.opts.error_format);
337-
early_dcx.initialize_checked_jobserver();
350+
initialize_checked_jobserver(&early_dcx);
338351

339352
crate::callbacks::setup_callbacks();
340353

compiler/rustc_interface/src/tests.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![allow(rustc::bad_opt_access)]
2-
use crate::interface::parse_cfg;
2+
use crate::interface::{initialize_checked_jobserver, parse_cfg};
33
use rustc_data_structures::profiling::TimePassesFormat;
44
use rustc_errors::{emitter::HumanReadableErrorType, registry, ColorConfig};
55
use rustc_session::config::{
@@ -31,7 +31,7 @@ where
3131
F: FnOnce(Session, Cfg),
3232
{
3333
let mut early_dcx = EarlyDiagCtxt::new(ErrorOutputType::default());
34-
early_dcx.initialize_checked_jobserver();
34+
initialize_checked_jobserver(&early_dcx);
3535

3636
let matches = optgroups().parse(args).unwrap();
3737
let sessopts = build_session_options(&mut early_dcx, &matches);

compiler/rustc_session/src/session.rs

+4-10
Original file line numberDiff line numberDiff line change
@@ -1397,16 +1397,10 @@ impl EarlyDiagCtxt {
13971397
self.dcx.warn(msg)
13981398
}
13991399

1400-
pub fn initialize_checked_jobserver(&self) {
1401-
// initialize jobserver before getting `jobserver::client` and `build_session`.
1402-
jobserver::initialize_checked(|err| {
1403-
#[allow(rustc::untranslatable_diagnostic)]
1404-
#[allow(rustc::diagnostic_outside_of_impl)]
1405-
self.dcx
1406-
.struct_warn(err)
1407-
.with_note("the build environment is likely misconfigured")
1408-
.emit()
1409-
});
1400+
#[allow(rustc::untranslatable_diagnostic)]
1401+
#[allow(rustc::diagnostic_outside_of_impl)]
1402+
pub fn early_struct_warn(&self, msg: impl Into<DiagMessage>) -> Diag<'_, ()> {
1403+
self.dcx.struct_warn(msg)
14101404
}
14111405
}
14121406

0 commit comments

Comments
 (0)