Portable atomic types including support for 128-bit atomics, atomic float, etc.
Atomic{I,U}{8,16,32,64}
) for all targets that can use atomic CAS. (i.e., all targets that can use std
, and most no-std targets)AtomicI128
and AtomicU128
.AtomicF32
and AtomicF64
. (optional)
AtomicPtr::fetch_*
, AtomicBool::fetch_not
.fence
/compiler_fence
on MSP430 that cause LLVM error, etc.Add this to your Cargo.toml
:
toml
[dependencies]
portable-atomic = "0.3"
The default features are mainly for users who use atomics larger than the pointer width. If you don't need them, disabling the default features may reduce code size and compile time slightly.
toml
[dependencies]
portable-atomic = { version = "0.3", default-features = false }
Compiler support: requires rustc 1.34+
Native 128-bit atomic operations are available on x86_64 (Rust 1.59+), aarch64 (Rust 1.59+), powerpc64 (le or pwr8+, nightly only), and s390x (nightly only), otherwise the fallback implementation is used.
On x86_64, even if cmpxchg16b
is not available at compile time (note: cmpxchg16b
target feature is enabled by default only on macOS), run-time detection checks whether cmpxchg16b
is available. If cmpxchg16b
is not available at either compile-time or run-time detection, the fallback implementation is used. See also portable_atomic_no_outline_atomics
cfg.
They are usually implemented using inline assembly, and when using Miri or ThreadSanitizer that do not support inline assembly, core intrinsics are used instead of inline assembly if possible.
See this list for details.
fallback
(enabled by default)
Enable fallback implementations.
Disabling this allows only atomic types for which the platform natively supports atomic operations.
float
Provide AtomicF{32,64}
.
Note that most of fetch_*
operations of atomic floats are implemented using CAS loops, which can be slower than equivalent operations of atomic integers.
std
Use std
.
serde
Implement serde::{Serialize,Deserialize}
for atomic types.
Note:
--cfg portable_atomic_unsafe_assume_single_core
Assume that the target is single-core.
When this cfg is enabled, this crate provides atomic CAS for targets where atomic CAS is not available in the standard library by disabling interrupts.
This cfg is unsafe
, and note the following safety requirements:
The following are known cases:
--cfg portable_atomic_disable_fiq
together.--cfg portable_atomic_s_mode
together, this generates code for supervisor-mode (S-mode). In particular, qemu-system-riscv*
uses OpenSBI as the default firmware.See also the interrupt
module's readme.
This is intentionally not an optional feature. (If this is an optional feature, dependencies can implicitly enable the feature, resulting in the use of unsound code without the end-user being aware of it.)
ARMv6-M (thumbv6m), pre-v6 ARM (e.g., thumbv4t, thumbv5te), RISC-V without A-extension are currently supported. See [#33] for support of multi-core systems.
Since all MSP430 and AVR are single-core, we always provide atomic CAS for them without this cfg.
Enabling this cfg for targets that have atomic CAS will result in a compile error.
The cfg interface is kept between versions, so it is designed to prevent downstream builds from breaking when upgrade to semver-incompatible version unless the portable-atomic types are exposed in the library's API.
Feel free to submit an issue if your target is not supported yet.
--cfg portable_atomic_no_outline_atomics
Disable dynamic dispatching by run-time CPU feature detection.
If dynamic dispatching by run-time CPU feature detection is enabled, it allows maintaining support for older CPUs while using features that are not supported on older CPUs, such as CMPXCHG16B (x8664) and FEATLSE (aarch64).
Note:
std
).outline-atomics
target feature by default, so if you set this cfg, you may want to disable that as well.See also this list.
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.