Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 9 pull requests #119767

Merged
merged 26 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
26 commits
Select commit Hold shift click to select a range
bc6a5c7
std: getrandom simplification for freebsd.
devnexen Dec 8, 2023
2c088f9
Disallow reference to `static mut` for expressions
obeis Dec 22, 2023
70ba4d1
Disallow reference to `static mut` for statements
obeis Dec 22, 2023
a82fd2b
Call `maybe_expr_static_mut` inside `resolve_expr`
obeis Dec 22, 2023
e36f7b7
Call `maybe_stmt_static_mut` inside `resolve_stmt`
obeis Dec 22, 2023
18edf9a
Add test for `E0796` and `static_mut_ref` lint
obeis Dec 22, 2023
5617361
don't reexport atomic::ordering via rustc_data_structures, use std im…
klensy Jan 2, 2024
a8aa687
Update test for `E0796` and `static_mut_ref` lint
obeis Dec 22, 2023
4071572
Merge dead bb pruning and unreachable bb deduplication.
cjgillot Jan 7, 2024
e61be1b
rustdoc-search: reuse empty map/array in function signatures
notriddle Jan 8, 2024
8356802
Move promote_consts back to rustc_mir_transform.
cjgillot May 20, 2023
cae0dc2
Simplify code flow.
cjgillot May 20, 2023
5d6463c
Make match exhaustive.
cjgillot Jan 8, 2024
a2b765f
Remove `-Zdont-buffer-diagnostics`.
nnethercote Jan 7, 2024
c3cd657
rustdoc-search: intern function search types
notriddle Jan 8, 2024
c8ded52
GNU/Hurd: unconditionally use inline stack probes
erikdesjardins Jan 9, 2024
3611014
Rework and improve unstable documentation of check-cfg
Urgau Dec 22, 2023
4a24b5b
Rollup merge of #117556 - obeis:static-mut-ref-lint, r=davidtwco
GuillaumeGomez Jan 9, 2024
df2f4ae
Rollup merge of #118748 - devnexen:fbsd_getrandom_simpl, r=Nilstrieb,…
GuillaumeGomez Jan 9, 2024
5c9a8d7
Rollup merge of #119282 - Urgau:check-cfg-rework-unstable-doc, r=John…
GuillaumeGomez Jan 9, 2024
d3574be
Rollup merge of #119527 - klensy:ordering, r=compiler-errors
GuillaumeGomez Jan 9, 2024
72fdaf5
Rollup merge of #119668 - cjgillot:transform-promote, r=oli-obk
GuillaumeGomez Jan 9, 2024
9b90541
Rollup merge of #119699 - cjgillot:simplify-unreachable, r=oli-obk
GuillaumeGomez Jan 9, 2024
b0aa3d8
Rollup merge of #119723 - nnethercote:rm-Zdont-buffer-diagnostics, r=…
GuillaumeGomez Jan 9, 2024
f9cadb9
Rollup merge of #119756 - notriddle:notriddle/reuse-map, r=GuillaumeG…
GuillaumeGomez Jan 9, 2024
f41d773
Rollup merge of #119758 - erikdesjardins:hurd, r=petrochenkov
GuillaumeGomez Jan 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions compiler/rustc_data_structures/src/sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 56,6 @@ mod parallel;
pub use parallel::scope;
pub use parallel::{join, par_for_each_in, par_map, parallel_guard, try_par_for_each_in};

pub use std::sync::atomic::Ordering;
pub use std::sync::atomic::Ordering::SeqCst;

pub use vec::{AppendOnlyIndexVec, AppendOnlyVec};

mod vec;
Expand All @@ -67,8 64,7 @@ mod freeze;
pub use freeze::{FreezeLock, FreezeReadGuard, FreezeWriteGuard};

mod mode {
use super::Ordering;
use std::sync::atomic::AtomicU8;
use std::sync::atomic::{AtomicU8, Ordering};

const UNINITIALIZED: u8 = 0;
const DYN_NOT_THREAD_SAFE: u8 = 1;
Expand Down Expand Up @@ -113,6 109,7 @@ cfg_match! {
cfg(not(parallel_compiler)) => {
use std::ops::Add;
use std::cell::Cell;
use std::sync::atomic::Ordering;

pub unsafe auto trait Send {}
pub unsafe auto trait Sync {}
Expand Down
3 changes: 1 addition & 2 deletions compiler/rustc_driver_impl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 25,6 @@ use rustc_codegen_ssa::{traits::CodegenBackend, CodegenErrors, CodegenResults};
use rustc_data_structures::profiling::{
get_resident_set_size, print_time_passes_entry, TimePassesFormat,
};
use rustc_data_structures::sync::SeqCst;
use rustc_errors::registry::{InvalidErrorCode, Registry};
use rustc_errors::{markdown, ColorConfig};
use rustc_errors::{DiagCtxt, ErrorGuaranteed, PResult};
Expand Down Expand Up @@ -476,7 475,7 @@ fn run_compiler(
eprintln!(
"Fuel used by {}: {}",
sess.opts.unstable_opts.print_fuel.as_ref().unwrap(),
sess.print_fuel.load(SeqCst)
sess.print_fuel.load(Ordering::SeqCst)
);
}

Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_query_impl/src/plumbing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 69,7 @@ impl QueryContext for QueryCtxt<'_> {
fn next_job_id(self) -> QueryJobId {
QueryJobId(
NonZeroU64::new(
self.query_system.jobs.fetch_add(1, rustc_data_structures::sync::Ordering::Relaxed),
self.query_system.jobs.fetch_add(1, std::sync::atomic::Ordering::Relaxed),
)
.unwrap(),
)
Expand Down
14 changes: 7 additions & 7 deletions compiler/rustc_query_system/src/dep_graph/graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ use rustc_data_structures::profiling::{EventId, QueryInvocationId, SelfProfilerR
use rustc_data_structures::sharded::{self, Sharded};
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
use rustc_data_structures::steal::Steal;
use rustc_data_structures::sync::{AtomicU32, AtomicU64, Lock, Lrc, Ordering};
use rustc_data_structures::sync::{AtomicU32, AtomicU64, Lock, Lrc};
use rustc_data_structures::unord::UnordMap;
use rustc_index::IndexVec;
use rustc_serialize::opaque::{FileEncodeResult, FileEncoder};
Expand All @@ -13,7 13,7 @@ use std::collections::hash_map::Entry;
use std::fmt::Debug;
use std::hash::Hash;
use std::marker::PhantomData;
use std::sync::atomic::Ordering::Relaxed;
use std::sync::atomic::Ordering;

use super::query::DepGraphQuery;
use super::serialized::{GraphEncoder, SerializedDepGraph, SerializedDepNodeIndex};
Expand Down Expand Up @@ -476,7 476,7 @@ impl<D: Deps> DepGraph<D> {
let task_deps = &mut *task_deps;

if cfg!(debug_assertions) {
data.current.total_read_count.fetch_add(1, Relaxed);
data.current.total_read_count.fetch_add(1, Ordering::Relaxed);
}

// As long as we only have a low number of reads we can avoid doing a hash
Expand Down Expand Up @@ -506,7 506,7 @@ impl<D: Deps> DepGraph<D> {
}
}
} else if cfg!(debug_assertions) {
data.current.total_duplicate_read_count.fetch_add(1, Relaxed);
data.current.total_duplicate_read_count.fetch_add(1, Ordering::Relaxed);
}
})
}
Expand Down Expand Up @@ -976,8 976,8 @@ impl<D: Deps> DepGraph<D> {
pub fn print_incremental_info(&self) {
if let Some(data) = &self.data {
data.current.encoder.borrow().print_incremental_info(
data.current.total_read_count.load(Relaxed),
data.current.total_duplicate_read_count.load(Relaxed),
data.current.total_read_count.load(Ordering::Relaxed),
data.current.total_duplicate_read_count.load(Ordering::Relaxed),
)
}
}
Expand All @@ -992,7 992,7 @@ impl<D: Deps> DepGraph<D> {

pub(crate) fn next_virtual_depnode_index(&self) -> DepNodeIndex {
debug_assert!(self.data.is_none());
let index = self.virtual_dep_node_index.fetch_add(1, Relaxed);
let index = self.virtual_dep_node_index.fetch_add(1, Ordering::Relaxed);
DepNodeIndex::from_u32(index)
}
}
Expand Down
6 changes: 2 additions & 4 deletions compiler/rustc_session/src/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 14,7 @@ use rustc_data_structures::flock;
use rustc_data_structures::fx::{FxHashMap, FxIndexSet};
use rustc_data_structures::jobserver::{self, Client};
use rustc_data_structures::profiling::{SelfProfiler, SelfProfilerRef};
use rustc_data_structures::sync::{
AtomicU64, DynSend, DynSync, Lock, Lrc, OneThread, Ordering::SeqCst,
};
use rustc_data_structures::sync::{AtomicU64, DynSend, DynSync, Lock, Lrc, OneThread};
use rustc_errors::annotate_snippet_emitter_writer::AnnotateSnippetEmitter;
use rustc_errors::emitter::{DynEmitter, HumanEmitter, HumanReadableErrorType};
use rustc_errors::json::JsonEmitter;
Expand Down Expand Up @@ -44,7 42,7 @@ use std::fmt;
use std::ops::{Div, Mul};
use std::path::{Path, PathBuf};
use std::str::FromStr;
use std::sync::{atomic::AtomicBool, Arc};
use std::sync::{atomic::AtomicBool, atomic::Ordering::SeqCst, Arc};

struct OptimizationFuel {
/// If `-zfuel=crate=n` is specified, initially set to `n`, otherwise `0`.
Expand Down