Releases: taiki-e/portable-atomic
portable-atomic-util 0.2.3
-
Add
new_uninit
/new_uninit_slice
/assume_init
toArc
at Rust 1.36+. (align to the stdArc
change in Rust 1.82) (362dc9a) -
Support
make_mut
onArc<[T]>
andArc<str>
at Rust 1.36+. (align to the stdArc
change in Rust 1.81) (362dc9a)
1.9.0
-
RISC-V without A-extension: Support RMW when Zaamo extension enabled (even when
unsafe-assume-single-core
disabled). (#185, 9983a8b)
See "operations don't require disabling interrupts" list ininterrupt
module's readme for the operations provided. -
Support run-time detection of RISC-V Zacas extension (currently disabled by default). (#183)
-
Support 128-bit atomics on Arm64EC (currently nightly-only) (#184)
-
Improve compile-time detection of powerpc64 quadword-atomics. (3eb8507)
1.8.0
-
Improve diagnostics when method that requires CAS is unavailable. (#181)
Before:
error[E0599]: no method named `compare_exchange` found for struct `portable_atomic::AtomicUsize` in the current scope --> src/race.rs:60:24 | 60 | self.inner.compare_exchange(0, value.get(), Ordering::AcqRel, Ordering::Acquire); | ^^^^^^^^^^^^^^^^ method not found in `AtomicUsize`
After:
error[E0277]: `compare_exchange` requires atomic CAS but not available on this target by default --> src/race.rs:60:24 | 60 | self.inner.compare_exchange(0, value.get(), Ordering::AcqRel, Ordering::Acquire); | ^^^^^^^^^^^^^^^^ this associated function is not available on this target by default | = help: the trait `HasCompareExchange` is not implemented for `&portable_atomic::AtomicUsize` = note: consider enabling one of the `unsafe-assume-single-core` or `critical-section` Cargo features = note: see <https://docs.rs/portable-atomic/latest/portable_atomic/#optional-features> for more.
-
Improve compile error messages for some other cases (19716ac, 61dcaaa)
-
Various improvements to RISC-V.
- riscv64: Support 128-bit atomics when Zacas extension enabled. (173) This is currently marked as experimental because LLVM marking the corresponding target feature as experimental.
- riscv32: Support 64-bit atomics when Zacas extension enabled. (173) This is currently marked as experimental because LLVM marking the corresponding target feature as experimental.
- Improvements for RISC-V without A-extension:
- Support zaamo target feature. When building for single-core RISC-V without A-extension, this is equivalent to force-amo feature (8abba4b)
- Support zabha target feature. (694364a)
- Strengthen SeqCst store to improve compatibility with code that uses atomic instruction mapping that differs from LLVM and GCC. (5b10b15)
-
Improve support of run-time detection and outline-atomics:
- aarch64: Support run-time detection of FEAT_LRCPC3/FEAT_LSE128 for load/store. (#174)
- aarch64: Support run-time detection of FEAT_LSE2 on OpenBSD. (4f8c735)
- aarch64: Support run-time detection of FEAT_LSE/FEAT_LSE2 on illumos (currently disabled by default because illumos AArch64 port is experimental). (#175)
- powerpc64: Support run-time detection on OpenBSD 7.6+ (currently disabled by default for compatibility with old versions). (09a967b)
-
aarch64: Support FEAT_LRCPC3/FEAT_LSE128 with pre-16 LLVM. (#178)
-
aarch64: Improve compile-time detection of FEAT_LSE2/FEAT_LRCPC3/FEAT_LSE128. (10d47de)
-
Relax minimal version of
serde
(supported via optional feature) to 1.0.60.
1.7.0
-
Support run-time detection for cmpxchg16b on x86_64 on pre-1.69 rustc. (#154)
-
Make
into_inner
const fn
on Rust 1.56+. (align to the std atomic change in Rust 1.79) (dee1f89) -
Work around rustc_codegen_gcc bug on x86_64. (d938f77)
-
Optimize x86_64 atomics.
-
Make rustc version detection robust for custom toolchains. (f8ea85e)
-
Respect
RUSTC_WRAPPER
in rustc version detection. -
Our build script is now less likely to be re-run unnecessarily in versions where the cargo bug fix is available (cargo 1.79+). (52c277b)
portable-atomic-util 0.2.2
portable-atomic-util 0.2.1
-
Support
impl Error for Arc<T: Error>
in no-std at Rust 1.81+. (30b9f90) -
Implement
Default
forArc<[T]>
andArc<str>
at Rust 1.51+. (align to the std Arc change in Rust 1.80) (c6ee296) -
Implement
{AsFd, AsRawFd}
forArc<T>
on HermitOS. (b778244)
portable-atomic-util 0.2.0
-
Rewrite
Arc
based onstd::sync::Arc
's implementation. (#142)This fixes accidental API differences with std (#139, #140) and adds many missing APIs compared to std:
- Add
Arc::{downcast, into_inner, make_mut, new_cyclic}
(#142) - Implement
{fmt::Display, fmt::Pointer, Error, From<T>, From<Box<T>>, From<Cow<'a,T>>, AsFd, AsRawFd, AsHandle, AsSocket}
forArc<T>
(#142, 78690d7, aba0930) - Implement
{From<&[T]>, From<Vec<T>>, From<[T; N]>, FromIterator<T>}
forArc<[T]>
(#142, 5e9f693) - Implement
TryFrom<Arc<[T]>>
forArc<[T; N]>
(#142) - Implement
From<Arc<str>>
forArc<[u8]>
(#142) - Implement
{From<&str>, From<String>}
forArc<str>
(#142) - Implement
{Read, Write, Seek}
forArc<File>
(591ece5) - Remove
T: UnwindSafe
bound fromimpl UnwindSafe for Arc<T>
(#142)
- Add
-
Add
task::Wake
. (#145)This is equivalent to
std::task::Wake
, but usingportable_atomic_util::Arc
as a reference-counted pointer. -
Respect
RUSTC_WRAPPER
in rustc version detection.
1.6.0
-
Add
cfg_{has,no}_atomic_{8,16,32,64,128,ptr}
macros to enable code when the corresponding atomic implementation is available/unavailable. -
Add
cfg_{has,no}_atomic_cas
macros to enable code when atomic CAS/RMW implementation is available/unavailable. -
Improve support for RISC-V targets without atomic CAS.
1.5.1
-
Fix bug in
i{8,16}
fetch_{or,xor}
on RISC-V without A-extension whereunsafe-assume-single-core
andforce-amo
are enabled. -
Optimize
swap
for targets that do not have native atomic CAS instructions.
1.5.0
-
Add
from_ptr
. -
Add
force-amo
feature (portable_atomic_force_amo
cfg) for single-core RISC-V without A-extension. (#124) -
Support run-time detection on AArch64 on pre-1.61 rustc. (#98)
This also solves a compatibility issue with rustc_codegen_cranelift.
-
Support run-time detection of FEAT_LSE2. (#126)
-
Support run-time detection of FEAT_LSE on AArch64 NetBSD. (#66)
-
Acknowledge ESP-IDF targets' 64-bit atomics are not lock-free. See #122 for more.
-
Optimize 128-bit weak CAS on powerpc64.
-
Optimize interrupt disable on no-std pre-v6 ARM where
unsafe-assume-single-core
anddisable-fiq
are enabled. (771c45d) -
Improve detection of Apple hardware. (5c3a43b)
-
Improve compatibility with the future version of Miri.