128-bit atomic implementations on 64-bit architectures

January 31, 2026 ยท View on GitHub

(See the atomic64 module for 64-bit atomic implementations on 32-bit architectures.)

128-bit atomic instructions

Here is the table of targets that support 128-bit atomics and the instructions used:

target_archloadstoreCASRMWnote
x86_64cmpxchg16b or vmovdqacmpxchg16b or vmovdqacmpxchg16bcmpxchg16bRequires cmpxchg16b target feature (enabled by default on Apple, Windows (except Windows 7, since Rust 1.78), and Fuchsia (since Rust 1.87) targets). vmovdqa requires avx target feature.
Both compile-time and run-time detection are supported.
Requires Rust 1.59+
aarch64/arm64ecldxp/stxp or casp or ldp/ldiappldxp/stxp or casp or stp/stilp/swppldxp/stxp or caspldxp/stxp or casp/swpp/ldclrp/ldsetpcasp requires lse target feature, ldp/stp requires lse2 target feature, ldiapp/stilp requires lse2 and rcpc3 target features, swpp/ldclrp/ldsetp requires lse128 target feature.
Both compile-time and run-time detection are supported.
Requires Rust 1.59+ (aarch64) / 1.84+ (arm64ec)
riscv64amocas.qamocas.qamocas.qamocas.qRequires zacas target feature. Both compile-time and run-time detection are supported.
Requires Rust 1.59+
powerpc64lqstqlqarx/stqcx.lqarx/stqcx.Requires quadword-atomics target feature (enabled by default on powerpc64le). Both compile-time and run-time detection are supported.
Requires Rust 1.95+
s390xlpqstpqcdsgcdsgRequires Rust 1.84+
loongarch64sc.qsc.qsc.qsc.qUnimplemented. Requires scq target feature.
mips64r6lldplldp/scdplldp/scdplldp/scdpUnimplemented (unsupported in LLVM). Requires Release 6 Paired LL/SC family of instructions
nvptx64ld.b128st.b128atom.cas.b128atom.exch.b128/atom.cas.b128Unimplemented. Requires ptx83 and sm_90.

On compiler versions or platforms where these are not supported, the fallback implementation is used.

See aarch64.rs module-level comments for more details on the instructions used on AArch64.

Comparison with core::intrinsics::atomic_* (core::sync::atomic::Atomic{I,U}128)

This directory has target-specific implementations with inline assembly (x86_64.rs, aarch64.rs, riscv64.rs, powerpc64.rs, s390x.rs) and an implementation without inline assembly (intrinsics.rs). The latter currently always needs nightly compilers and is only used for Miri and ThreadSanitizer, which do not support inline assembly.

Implementations with inline assembly generate assemblies almost equivalent to the core::intrinsics::atomic_* (used in core::sync::atomic::Atomic{I,U}128) for many operations, but some operations may or may not generate more efficient code. For example:

  • On x86_64 and AArch64, implementation with inline assembly contains additional optimizations (e.g., #16, #126) and is much faster for some operations.
  • On AArch64, implementation with inline assembly supports outline-atomics on more operating systems, and may be faster in environments where outline-atomics can improve performance.
  • On powerpc64, LLVM does not support generating some 128-bit atomic operations (see intrinsics.rs module-level comments), and we use CAS loop to implement them, so implementation with inline assembly may be faster for those operations.
  • In implementations without inline assembly, the compiler may reuse condition flags that have changed as a result of the operation, or use immediate values instead of registers, depending on the situation.

As 128-bit atomics-related APIs stabilize in the standard library, implementations with inline assembly are planned to be updated to get the benefits of both.

Run-time CPU feature detection

See the detect module's readme for run-time CPU feature detection.