1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! Combined intrinsics: `core::arch` + `safe_unaligned_simd` in one namespace.
//!
//! Each sub-module glob-imports `core::arch::{arch}::*` for types and value
//! intrinsics, then explicitly re-exports `safe_unaligned_simd` functions.
//! Rust's name resolution makes explicit imports shadow glob imports, so safe
//! reference-based memory ops (e.g., `_mm256_loadu_ps(&data)`) win over the
//! unsafe pointer-based versions automatically.
//!
//! **Auto-generated** by `cargo xtask generate` — do not edit the `generated/`
//! subdirectory manually.
//!
//! # Usage
//!
//! ```rust,ignore
//! use archmage::intrinsics::x86_64::*;
//!
//! // Types, value intrinsics, AND safe memory ops — all in one namespace.
//! let v = _mm256_loadu_ps(data); // safe_unaligned_simd version (takes reference)
//! let doubled = _mm256_add_ps(v, v); // core::arch version (value op)
//! ```
pub use aarch64;
pub use wasm32;
pub use x86;
pub use x86_64;