core/stdarch/crates/core_arch/src/aarch64/
mod.rs

1//! AArch64 intrinsics.
2//!
3//! The reference for NEON is [Arm's NEON Intrinsics Reference][arm_ref]. The
4//! [Arm's NEON Intrinsics Online Database][arm_dat] is also useful.
5//!
6//! [arm_ref]: http://infocenter.arm.com/help/topic/com.arm.doc.ihi0073a/IHI0073A_arm_neon_intrinsics_ref.pdf
7//! [arm_dat]: https://developer.arm.com/technologies/neon/intrinsics
8
9#![cfg_attr(
10    all(target_arch = "aarch64", target_abi = "softfloat"),
11    // Just allow the warning: anyone soundly using the intrinsics has to enable
12    // the target feature, and that will generate a warning for them.
13    allow(aarch64_softfloat_neon)
14)]
15
16mod mte;
17#[unstable(feature = "stdarch_aarch64_mte", issue = "129010")]
18pub use self::mte::*;
19
20mod neon;
21#[stable(feature = "neon_intrinsics", since = "1.59.0")]
22pub use self::neon::*;
23
24mod prefetch;
25#[unstable(feature = "stdarch_aarch64_prefetch", issue = "117217")]
26pub use self::prefetch::*;
27
28#[stable(feature = "neon_intrinsics", since = "1.59.0")]
29pub use super::arm_shared::*;
30
31#[cfg(test)]
32use stdarch_test::assert_instr;
33
34#[cfg(test)]
35pub(crate) mod test_support;