Skip to content

Commit ae1ba15

Browse files
committed
Auto merge of #57948 - Zoxc:parallel, r=michaelwoerister
Use multiple threads by default. Limits tests to one thread. Do some renaming. r? @michaelwoerister
2 parents 106b3e9 + fd9d9ee commit ae1ba15

File tree

21 files changed

+95
-89
lines changed

21 files changed

+95
-89
lines changed

Cargo.lock

+1
Original file line numberDiff line numberDiff line change
@@ -2234,6 +2234,7 @@ dependencies = [
22342234
"jobserver 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
22352235
"lazy_static 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
22362236
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
2237+
"num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
22372238
"parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
22382239
"polonius-engine 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
22392240
"rustc-rayon 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",

config.toml.example

+2-2
Original file line numberDiff line numberDiff line change
@@ -317,8 +317,8 @@
317317
# Whether to always use incremental compilation when building rustc
318318
#incremental = false
319319

320-
# Build rustc with experimental parallelization
321-
#experimental-parallel-queries = false
320+
# Build a multi-threaded rustc
321+
#parallel-compiler = false
322322

323323
# The default linker that will be hard-coded into the generated compiler for
324324
# targets that don't specify linker explicitly in their target specifications.

src/bootstrap/bin/rustc.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,8 @@ fn main() {
284284
}
285285
}
286286

287-
if env::var_os("RUSTC_PARALLEL_QUERIES").is_some() {
288-
cmd.arg("--cfg").arg("parallel_queries");
287+
if env::var_os("RUSTC_PARALLEL_COMPILER").is_some() {
288+
cmd.arg("--cfg").arg("parallel_compiler");
289289
}
290290

291291
if env::var_os("RUSTC_DENY_WARNINGS").is_some() && env::var_os("RUSTC_EXTERNAL_TOOL").is_none()

src/bootstrap/compile.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -554,8 +554,8 @@ pub fn rustc_cargo_env(builder: &Builder, cargo: &mut Command) {
554554
if let Some(ref s) = builder.config.rustc_default_linker {
555555
cargo.env("CFG_DEFAULT_LINKER", s);
556556
}
557-
if builder.config.rustc_parallel_queries {
558-
cargo.env("RUSTC_PARALLEL_QUERIES", "1");
557+
if builder.config.rustc_parallel {
558+
cargo.env("RUSTC_PARALLEL_COMPILER", "1");
559559
}
560560
if builder.config.rust_verify_llvm_ir {
561561
cargo.env("RUSTC_VERIFY_LLVM_IR", "1");

src/bootstrap/config.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ pub struct Config {
9797
pub rust_debuginfo_only_std: bool,
9898
pub rust_debuginfo_tools: bool,
9999
pub rust_rpath: bool,
100-
pub rustc_parallel_queries: bool,
100+
pub rustc_parallel: bool,
101101
pub rustc_default_linker: Option<String>,
102102
pub rust_optimize_tests: bool,
103103
pub rust_debuginfo_tests: bool,
@@ -298,7 +298,7 @@ struct Rust {
298298
debuginfo_lines: Option<bool>,
299299
debuginfo_only_std: Option<bool>,
300300
debuginfo_tools: Option<bool>,
301-
experimental_parallel_queries: Option<bool>,
301+
parallel_compiler: Option<bool>,
302302
backtrace: Option<bool>,
303303
default_linker: Option<String>,
304304
channel: Option<String>,
@@ -557,7 +557,7 @@ impl Config {
557557
set(&mut config.lld_enabled, rust.lld);
558558
set(&mut config.lldb_enabled, rust.lldb);
559559
set(&mut config.llvm_tools_enabled, rust.llvm_tools);
560-
config.rustc_parallel_queries = rust.experimental_parallel_queries.unwrap_or(false);
560+
config.rustc_parallel = rust.parallel_compiler.unwrap_or(false);
561561
config.rustc_default_linker = rust.default_linker.clone();
562562
config.musl_root = rust.musl_root.clone().map(PathBuf::from);
563563
config.save_toolstates = rust.save_toolstates.clone().map(PathBuf::from);

src/bootstrap/configure.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def v(*args):
3535
o("docs", "build.docs", "build standard library documentation")
3636
o("compiler-docs", "build.compiler-docs", "build compiler documentation")
3737
o("optimize-tests", "rust.optimize-tests", "build tests with optimizations")
38-
o("experimental-parallel-queries", "rust.experimental-parallel-queries", "build rustc with experimental parallelization")
38+
o("parallel-compiler", "rust.parallel-compiler", "build a multi-threaded rustc")
3939
o("test-miri", "rust.test-miri", "run miri's test suite")
4040
o("debuginfo-tests", "rust.debuginfo-tests", "build tests with debugger metadata")
4141
o("verbose-tests", "rust.verbose-tests", "enable verbose output when running tests")

src/ci/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ fi
8282
SCCACHE_IDLE_TIMEOUT=10800 sccache --start-server || true
8383

8484
if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
85-
$SRC/configure --enable-experimental-parallel-queries
85+
$SRC/configure --enable-parallel-compiler
8686
CARGO_INCREMENTAL=0 python2.7 ../x.py check
8787
rm -f config.toml
8888
rm -rf build

src/librustc/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ fmt_macros = { path = "../libfmt_macros" }
1515
graphviz = { path = "../libgraphviz" }
1616
jobserver = "0.1"
1717
lazy_static = "1.0.0"
18+
num_cpus = "1.0"
1819
scoped-tls = { version = "0.1.1", features = ["nightly"] }
1920
log = { version = "0.4", features = ["release_max_level_info", "std"] }
2021
polonius-engine = "0.6.2"

src/librustc/dep_graph/graph.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ impl DepGraph {
580580
) -> Option<DepNodeIndex> {
581581
debug!("try_mark_previous_green({:?}) - BEGIN", dep_node);
582582

583-
#[cfg(not(parallel_queries))]
583+
#[cfg(not(parallel_compiler))]
584584
{
585585
debug_assert!(!data.current.borrow().node_to_node_index.contains_key(dep_node));
586586
debug_assert!(data.colors.get(prev_dep_node_index).is_none());
@@ -743,7 +743,7 @@ impl DepGraph {
743743

744744
// ... and finally storing a "Green" entry in the color map.
745745
// Multiple threads can all write the same color here
746-
#[cfg(not(parallel_queries))]
746+
#[cfg(not(parallel_compiler))]
747747
debug_assert!(data.colors.get(prev_dep_node_index).is_none(),
748748
"DepGraph::try_mark_previous_green() - Duplicate DepNodeColor \
749749
insertion for {:?}", dep_node);
@@ -766,7 +766,7 @@ impl DepGraph {
766766
did_allocation: bool,
767767
diagnostics: Vec<Diagnostic>,
768768
) {
769-
if did_allocation || !cfg!(parallel_queries) {
769+
if did_allocation || !cfg!(parallel_compiler) {
770770
// Only the thread which did the allocation emits the error messages
771771
let handle = tcx.sess.diagnostic();
772772

@@ -778,7 +778,7 @@ impl DepGraph {
778778
DiagnosticBuilder::new_diagnostic(handle, diagnostic).emit();
779779
}
780780

781-
#[cfg(parallel_queries)]
781+
#[cfg(parallel_compiler)]
782782
{
783783
// Mark the diagnostics and emitted and wake up waiters
784784
data.emitted_diagnostics.lock().insert(dep_node_index);

src/librustc/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ extern crate core;
7070
extern crate fmt_macros;
7171
extern crate getopts;
7272
extern crate graphviz;
73+
extern crate num_cpus;
7374
#[macro_use] extern crate lazy_static;
7475
#[macro_use] extern crate scoped_tls;
7576
#[cfg(windows)]

src/librustc/session/config.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -1194,8 +1194,8 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
11941194
"prints the llvm optimization passes being run"),
11951195
ast_json: bool = (false, parse_bool, [UNTRACKED],
11961196
"print the AST as JSON and halt"),
1197-
query_threads: Option<usize> = (None, parse_opt_uint, [UNTRACKED],
1198-
"execute queries on a thread pool with N threads"),
1197+
threads: Option<usize> = (None, parse_opt_uint, [UNTRACKED],
1198+
"use a thread pool with N threads"),
11991199
ast_json_noexpand: bool = (false, parse_bool, [UNTRACKED],
12001200
"print the pre-expansion AST as JSON and halt"),
12011201
ls: bool = (false, parse_bool, [UNTRACKED],
@@ -1986,17 +1986,17 @@ pub fn build_session_options_and_crate_config(
19861986
}
19871987
}
19881988

1989-
if debugging_opts.query_threads == Some(0) {
1989+
if debugging_opts.threads == Some(0) {
19901990
early_error(
19911991
error_format,
1992-
"Value for query threads must be a positive nonzero integer",
1992+
"Value for threads must be a positive nonzero integer",
19931993
);
19941994
}
19951995

1996-
if debugging_opts.query_threads.unwrap_or(1) > 1 && debugging_opts.fuel.is_some() {
1996+
if debugging_opts.threads.unwrap_or(1) > 1 && debugging_opts.fuel.is_some() {
19971997
early_error(
19981998
error_format,
1999-
"Optimization fuel is incompatible with multiple query threads",
1999+
"Optimization fuel is incompatible with multiple threads",
20002000
);
20012001
}
20022002

src/librustc/session/mod.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,7 @@ impl Session {
877877
let mut ret = true;
878878
if let Some(ref c) = self.optimization_fuel_crate {
879879
if c == crate_name {
880-
assert_eq!(self.query_threads(), 1);
880+
assert_eq!(self.threads(), 1);
881881
let mut fuel = self.optimization_fuel.lock();
882882
ret = fuel.remaining != 0;
883883
if fuel.remaining == 0 && !fuel.out_of_fuel {
@@ -890,7 +890,7 @@ impl Session {
890890
}
891891
if let Some(ref c) = self.print_fuel_crate {
892892
if c == crate_name {
893-
assert_eq!(self.query_threads(), 1);
893+
assert_eq!(self.threads(), 1);
894894
self.print_fuel.fetch_add(1, SeqCst);
895895
}
896896
}
@@ -899,14 +899,14 @@ impl Session {
899899

900900
/// Returns the number of query threads that should be used for this
901901
/// compilation
902-
pub fn query_threads_from_opts(opts: &config::Options) -> usize {
903-
opts.debugging_opts.query_threads.unwrap_or(1)
902+
pub fn threads_from_opts(opts: &config::Options) -> usize {
903+
opts.debugging_opts.threads.unwrap_or(::num_cpus::get())
904904
}
905905

906906
/// Returns the number of query threads that should be used for this
907907
/// compilation
908-
pub fn query_threads(&self) -> usize {
909-
Self::query_threads_from_opts(&self.opts)
908+
pub fn threads(&self) -> usize {
909+
Self::threads_from_opts(&self.opts)
910910
}
911911

912912
/// Returns the number of codegen units that should be used for this

src/librustc/ty/context.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -1823,10 +1823,10 @@ pub mod tls {
18231823
use rustc_data_structures::thin_vec::ThinVec;
18241824
use dep_graph::TaskDeps;
18251825

1826-
#[cfg(not(parallel_queries))]
1826+
#[cfg(not(parallel_compiler))]
18271827
use std::cell::Cell;
18281828

1829-
#[cfg(parallel_queries)]
1829+
#[cfg(parallel_compiler)]
18301830
use rayon_core;
18311831

18321832
/// This is the implicit state of rustc. It contains the current
@@ -1859,28 +1859,28 @@ pub mod tls {
18591859
/// Sets Rayon's thread local variable which is preserved for Rayon jobs
18601860
/// to `value` during the call to `f`. It is restored to its previous value after.
18611861
/// This is used to set the pointer to the new ImplicitCtxt.
1862-
#[cfg(parallel_queries)]
1862+
#[cfg(parallel_compiler)]
18631863
#[inline]
18641864
fn set_tlv<F: FnOnce() -> R, R>(value: usize, f: F) -> R {
18651865
rayon_core::tlv::with(value, f)
18661866
}
18671867

18681868
/// Gets Rayon's thread local variable which is preserved for Rayon jobs.
18691869
/// This is used to get the pointer to the current ImplicitCtxt.
1870-
#[cfg(parallel_queries)]
1870+
#[cfg(parallel_compiler)]
18711871
#[inline]
18721872
fn get_tlv() -> usize {
18731873
rayon_core::tlv::get()
18741874
}
18751875

18761876
/// A thread local variable which stores a pointer to the current ImplicitCtxt
1877-
#[cfg(not(parallel_queries))]
1877+
#[cfg(not(parallel_compiler))]
18781878
thread_local!(static TLV: Cell<usize> = Cell::new(0));
18791879

18801880
/// Sets TLV to `value` during the call to `f`.
18811881
/// It is restored to its previous value after.
18821882
/// This is used to set the pointer to the new ImplicitCtxt.
1883-
#[cfg(not(parallel_queries))]
1883+
#[cfg(not(parallel_compiler))]
18841884
#[inline]
18851885
fn set_tlv<F: FnOnce() -> R, R>(value: usize, f: F) -> R {
18861886
let old = get_tlv();
@@ -1890,7 +1890,7 @@ pub mod tls {
18901890
}
18911891

18921892
/// This is used to get the pointer to the current ImplicitCtxt.
1893-
#[cfg(not(parallel_queries))]
1893+
#[cfg(not(parallel_compiler))]
18941894
fn get_tlv() -> usize {
18951895
TLV.with(|tlv| tlv.get())
18961896
}

0 commit comments

Comments
 (0)