• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*!
2 A module with low-level architecture dependent routines.
3 
4 These routines are useful as primitives for tasks not covered by the higher
5 level crate API.
6 */
7 
8 pub mod all;
9 pub(crate) mod generic;
10 
11 #[cfg(target_arch = "aarch64")]
12 pub mod aarch64;
13 #[cfg(all(target_arch = "wasm32", target_feature = "simd128"))]
14 pub mod wasm32;
15 #[cfg(target_arch = "x86_64")]
16 pub mod x86_64;
17