Expand description
Atomic operations on potentially uninitialized integers.
§Motivation
Copying types containing uninitialized bytes (e.g., padding), via the standard library’s atomic types is undefined behavior because the copy goes through integers.
This crate provides a way to soundly perform such operations.
§Platform Support
Currently, x86, x86_64, Arm, AArch64, RISC-V, LoongArch, Arm64EC, s390x, MIPS, PowerPC, MSP430, AVR, SPARC, Hexagon, M68k, and Xtensa are supported.
target_arch | primitives | load/store | swap/CAS |
---|---|---|---|
x86 | isize,usize,i8,u8,i16,u16,i32,u32,i64,u64 | ✓ | ✓ |
x86_64 | isize,usize,i8,u8,i16,u16,i32,u32,i64,u64 | ✓ | ✓ |
x86_64 (+cmpxchg16b) [2] | i128,u128 | ✓ | ✓ |
arm (v6+ or Linux/Android) | isize,usize,i8,u8,i16,u16,i32,u32 | ✓ | ✓[1] |
arm (except for M-profile) [3] | i64,u64 | ✓ | ✓ |
aarch64 | isize,usize,i8,u8,i16,u16,i32,u32,i64,u64,i128,u128 | ✓ | ✓ |
riscv32 | isize,usize,i8,u8,i16,u16,i32,u32 | ✓ | ✓[1] |
riscv32 (+zacas) [4] | i64,u64 | ✓ | ✓ |
riscv64 | isize,usize,i8,u8,i16,u16,i32,u32,i64,u64 | ✓ | ✓[1] |
riscv64 (+zacas) [4] | i128,u128 | ✓ | ✓ |
loongarch64 [7] | isize,usize,i8,u8,i16,u16,i32,u32,i64,u64 | ✓ | ✓ |
loongarch32 [10] (experimental) | isize,usize,i8,u8,i16,u16,i32,u32 | ✓ | ✓ |
arm64ec [8] | isize,usize,i8,u8,i16,u16,i32,u32,i64,u64,i128,u128 | ✓ | ✓ |
s390x [8] | isize,usize,i8,u8,i16,u16,i32,u32,i64,u64,i128,u128 | ✓ | ✓ |
mips / mips32r6 [9] | isize,usize,i8,u8,i16,u16,i32,u32 | ✓ | ✓ |
mips64 / mips64r6 [9] | isize,usize,i8,u8,i16,u16,i32,u32,i64,u64 | ✓ | ✓ |
powerpc [9] | isize,usize,i8,u8,i16,u16,i32,u32 | ✓ | ✓ |
powerpc64 [9] | isize,usize,i8,u8,i16,u16,i32,u32,i64,u64 | ✓ | ✓ |
powerpc64 (+quadword-atomics) [5] [9] | i128,u128 | ✓ | ✓ |
msp430 [9] (experimental) | isize,usize,i8,u8,i16,u16 | ✓ | ✓ |
avr [9] (experimental) | isize,usize,i8,u8,i16,u16 | ✓ | ✓ |
sparc [6] [9] (experimental) | isize,usize,i8,u8,i16,u16,i32,u32 | ✓ | ✓ |
sparc64 [9] (experimental) | isize,usize,i8,u8,i16,u16,i32,u32,i64,u64 | ✓ | ✓ |
hexagon [9] (experimental) | isize,usize,i8,u8,i16,u16,i32,u32,i64,u64 | ✓ | ✓ |
m68k [9] (experimental) | isize,usize,i8,u8,i16,u16,i32,u32 | ✓ | ✓[1] |
xtensa [9] (experimental) | isize,usize,i8,u8,i16,u16,i32,u32 | ✓ | ✓[1] |
[1] Arm’s atomic RMW operations are not available on Armv6-M (thumbv6m). RISC-V’s atomic RMW operations are not available on targets without the A (or G which means IMAFD) or Zalrsc or Zacas extension, such as riscv32i, riscv32imc, etc. M68k’s atomic RMW operations requires target-cpu M68020+ (Linux is M68020 by default). Xtensa’s atomic RMW operations are not available on esp32s2.
[2] Requires cmpxchg16b
target feature (enabled by default on Apple, Windows (except Windows 7), and Fuchsia targets).
[3] Armv6+ or Linux/Android, except for M-profile architecture such as thumbv6m, thumbv7m, etc.
[4] Requires zacas
target feature.
[5] Requires quadword-atomics
target feature (enabled by default on powerpc64le).
[6] Requires v9
or leoncasa
target feature (enabled by default on Linux).
[7] Requires Rust 1.72+.
[8] Requires Rust 1.84+.
[10] Requires Rust 1.91+.
[9] Requires nightly due to #![feature(asm_experimental_arch)]
.
See also Atomic operation overview by architecture for more information about atomic operations in these architectures.
Feel free to submit an issue if your target is not supported yet.
§Related Projects
- portable-atomic: Portable atomic types including support for 128-bit atomics, atomic float, etc.
- atomic-memcpy: Byte-wise atomic memcpy.
Modules§
- raw
- Low level API.
Macros§
- cfg_
has_ atomic_ 8 - cfg_
has_ atomic_ 16 - cfg_
has_ atomic_ 32 - cfg_
has_ atomic_ 64 - cfg_
has_ atomic_ 128 - cfg_
has_ atomic_ cas - cfg_
has_ atomic_ ptr - cfg_
no_ atomic_ 8 - cfg_
no_ atomic_ 16 - cfg_
no_ atomic_ 32 - cfg_
no_ atomic_ 64 - cfg_
no_ atomic_ 128 - cfg_
no_ atomic_ cas - cfg_
no_ atomic_ ptr
Structs§
- Atomic
Maybe Uninit - A potentially uninitialized integer type which can be safely shared between threads.