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 tme;
25#[unstable(feature = "stdarch_aarch64_tme", issue = "117216")]
26pub use self::tme::*;
27
28mod prefetch;
29#[unstable(feature = "stdarch_aarch64_prefetch", issue = "117217")]
30pub use self::prefetch::*;
31
32#[stable(feature = "neon_intrinsics", since = "1.59.0")]
33pub use super::arm_shared::*;
34
35#[cfg(test)]
36use stdarch_test::assert_instr;
37
38#[cfg(test)]
39pub(crate) mod test_support;