Skip to content

Commit a89ef7b

Browse files
authored
Unrolled build for rust-lang#116791
Rollup merge of rust-lang#116791 - WaffleLapkin:unparallel-backends, r=oli-obk Allow codegen backends to opt-out of parallel codegen This makes it a bit easier to write cursed codegen backends.
2 parents 65cd843 + f368922 commit a89ef7b

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

compiler/rustc_codegen_ssa/src/back/write.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,10 @@ pub struct CodegenContext<B: WriteBackendMethods> {
374374
pub incr_comp_session_dir: Option<PathBuf>,
375375
/// Channel back to the main control thread to send messages to
376376
pub coordinator_send: Sender<Box<dyn Any + Send>>,
377+
/// `true` if the codegen should be run in parallel.
378+
///
379+
/// Depends on [`CodegenBackend::supports_parallel()`] and `-Zno_parallel_backend`.
380+
pub parallel: bool,
377381
}
378382

379383
impl<B: WriteBackendMethods> CodegenContext<B> {
@@ -1152,6 +1156,7 @@ fn start_executing_work<B: ExtraBackendMethods>(
11521156
target_arch: tcx.sess.target.arch.to_string(),
11531157
split_debuginfo: tcx.sess.split_debuginfo(),
11541158
split_dwarf_kind: tcx.sess.opts.unstable_opts.split_dwarf_kind,
1159+
parallel: backend.supports_parallel() && !sess.opts.unstable_opts.no_parallel_backend,
11551160
};
11561161

11571162
// This is the "main loop" of parallel work happening for parallel codegen.
@@ -1422,7 +1427,7 @@ fn start_executing_work<B: ExtraBackendMethods>(
14221427
.binary_search_by_key(&cost, |&(_, cost)| cost)
14231428
.unwrap_or_else(|e| e);
14241429
work_items.insert(insertion_index, (work, cost));
1425-
if !cgcx.opts.unstable_opts.no_parallel_llvm {
1430+
if cgcx.parallel {
14261431
helper.request_token();
14271432
}
14281433
}
@@ -1545,7 +1550,7 @@ fn start_executing_work<B: ExtraBackendMethods>(
15451550
};
15461551
work_items.insert(insertion_index, (llvm_work_item, cost));
15471552

1548-
if !cgcx.opts.unstable_opts.no_parallel_llvm {
1553+
if cgcx.parallel {
15491554
helper.request_token();
15501555
}
15511556
assert_eq!(main_thread_state, MainThreadState::Codegenning);

compiler/rustc_codegen_ssa/src/traits/backend.rs

+7
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,13 @@ pub trait CodegenBackend {
111111
codegen_results: CodegenResults,
112112
outputs: &OutputFilenames,
113113
) -> Result<(), ErrorGuaranteed>;
114+
115+
/// Returns `true` if this backend can be safely called from multiple threads.
116+
///
117+
/// Defaults to `true`.
118+
fn supports_parallel(&self) -> bool {
119+
true
120+
}
114121
}
115122

116123
pub trait ExtraBackendMethods:

compiler/rustc_interface/src/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ fn test_unstable_options_tracking_hash() {
685685
untracked!(nll_facts, true);
686686
untracked!(no_analysis, true);
687687
untracked!(no_leak_check, true);
688-
untracked!(no_parallel_llvm, true);
688+
untracked!(no_parallel_backend, true);
689689
untracked!(parse_only, true);
690690
// `pre_link_arg` is omitted because it just forwards to `pre_link_args`.
691691
untracked!(pre_link_args, vec![String::from("abc"), String::from("def")]);

compiler/rustc_session/src/options.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1772,7 +1772,7 @@ options! {
17721772
"disable the 'leak check' for subtyping; unsound, but useful for tests"),
17731773
no_link: bool = (false, parse_no_flag, [TRACKED],
17741774
"compile without linking"),
1775-
no_parallel_llvm: bool = (false, parse_no_flag, [UNTRACKED],
1775+
no_parallel_backend: bool = (false, parse_no_flag, [UNTRACKED],
17761776
"run LLVM in non-parallel mode (while keeping codegen-units and ThinLTO)"),
17771777
no_profiler_runtime: bool = (false, parse_no_flag, [TRACKED],
17781778
"prevent automatic injection of the profiler_builtins crate"),

0 commit comments

Comments
 (0)