Skip to content

Commit f2a40e9

Browse files
committed
use portable AtomicU64 for powerPC and MIPS
1 parent 248dd14 commit f2a40e9

File tree

5 files changed

+28
-4
lines changed

5 files changed

+28
-4
lines changed

Cargo.lock

+3-2
Original file line numberDiff line numberDiff line change
@@ -2982,9 +2982,9 @@ dependencies = [
29822982

29832983
[[package]]
29842984
name = "portable-atomic"
2985-
version = "1.4.2"
2985+
version = "1.5.1"
29862986
source = "registry+https://github.com/rust-lang/crates.io-index"
2987-
checksum = "f32154ba0af3a075eefa1eda8bb414ee928f62303a54ea85b8d6638ff1a6ee9e"
2987+
checksum = "3bccab0e7fd7cc19f820a1c8c91720af652d0c88dc9664dd72aef2614f04af3b"
29882988

29892989
[[package]]
29902990
name = "ppv-lite86"
@@ -3712,6 +3712,7 @@ dependencies = [
37123712
"measureme",
37133713
"memmap2",
37143714
"parking_lot 0.12.1",
3715+
"portable-atomic",
37153716
"rustc-hash",
37163717
"rustc-rayon",
37173718
"rustc-rayon-core",

compiler/rustc_data_structures/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ features = [
4747
memmap2 = "0.2.1"
4848
# tidy-alphabetical-end
4949

50+
[target.'cfg(any(target_arch = "powerpc", target_arch = "mips"))'.dependencies]
51+
portable-atomic = "1.5.1"
52+
5053
[features]
5154
# tidy-alphabetical-start
5255
rustc_use_parallel_compiler = ["indexmap/rustc-rayon", "rustc-rayon", "rustc-rayon-core"]

compiler/rustc_data_structures/src/marker.rs

+12-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ cfg_match! {
138138
[std::sync::atomic::AtomicUsize]
139139
[std::sync::atomic::AtomicU8]
140140
[std::sync::atomic::AtomicU32]
141-
[std::sync::atomic::AtomicU64]
142141
[std::backtrace::Backtrace]
143142
[std::io::Error]
144143
[std::fs::File]
@@ -148,6 +147,18 @@ cfg_match! {
148147
[crate::owned_slice::OwnedSlice]
149148
);
150149

150+
// PowerPC and MIPS platforms with 32-bit pointers do not
151+
// have AtomicU64 type.
152+
#[cfg(not(any(target_arch = "powerpc", target_arch = "mips")))]
153+
already_sync!(
154+
[std::sync::atomic::AtomicU64]
155+
);
156+
157+
#[cfg(any(target_arch = "powerpc", target_arch = "mips"))]
158+
already_sync!(
159+
[portable_atomic::AtomicU64]
160+
);
161+
151162
macro_rules! impl_dyn_sync {
152163
($($($attr: meta)* [$ty: ty where $($generics2: tt)*])*) => {
153164
$(unsafe impl<$($generics2)*> DynSync for $ty {})*

compiler/rustc_data_structures/src/sync.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,15 @@ cfg_match! {
265265

266266
pub use std::sync::OnceLock;
267267

268-
pub use std::sync::atomic::{AtomicBool, AtomicUsize, AtomicU32, AtomicU64};
268+
pub use std::sync::atomic::{AtomicBool, AtomicUsize, AtomicU32};
269+
270+
// PowerPC and MIPS platforms with 32-bit pointers do not
271+
// have AtomicU64 type.
272+
#[cfg(not(any(target_arch = "powerpc", target_arch = "mips")))]
273+
pub use std::sync::atomic::AtomicU64;
274+
275+
#[cfg(any(target_arch = "powerpc", target_arch = "mips"))]
276+
pub use portable_atomic::AtomicU64;
269277

270278
pub use std::sync::Arc as Lrc;
271279
pub use std::sync::Weak as Weak;

src/tools/tidy/src/deps.rs

+1
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
211211
"perf-event-open-sys",
212212
"pin-project-lite",
213213
"polonius-engine",
214+
"portable-atomic", // dependency for platforms doesn't support `AtomicU64` in std
214215
"ppv-lite86",
215216
"proc-macro-hack",
216217
"proc-macro2",

0 commit comments

Comments
 (0)