Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
7545897
Add SVE intrinsics for AArch64 architecture
GWTINYC Oct 31, 2025
4c35dbc
Add SVE module and types for AArch64 architecture
GWTINYC Oct 31, 2025
bf79742
Attempt to import SVE data type
GWTINYC Nov 7, 2025
e8241b3
Implemented direct referencing of SVE types and intrinsic functions
GWTINYC Nov 12, 2025
d1718aa
Added division intrinsics in sve.rs
GWTINYC Nov 12, 2025
d4cef31
Completing missing AArch64 SVE type definitions in stdarch
GWTINYC Nov 13, 2025
6b22221
Completing the intrinsics, including svadd/svsub/svmul, svabd, svabs,…
GWTINYC Nov 14, 2025
14c5f66
Completing the intrinsics, including svadr *, svld *, svst *, svbic *…
GWTINYC Nov 17, 2025
34d8635
Update the usage of transmute_copy
GWTINYC Nov 18, 2025
a3a9afa
Add saturating subtract, address calculation and adding across vector…
GWTINYC Nov 19, 2025
2a13522
Add SVE "subtract reversed" (svsubr) intrinsics for f32, f64, and s8 …
GWTINYC Nov 19, 2025
ef13433
Completing missing implementations in the AArch64 SVE core_arch source
GWTINYC Nov 19, 2025
31baa23
Add AArch64 SVE reciprocal/reciprocal‑step/reciprocal‑exponent and re…
GWTINYC Nov 19, 2025
9622677
Add svand_b_z intrinsic
GWTINYC Nov 20, 2025
544818f
Integrated sve.rs from code generator into the standard library, supp…
GWTINYC Nov 20, 2025
5c6caf3
Add new macros for static assertions and extend feature list in core_…
GWTINYC Nov 24, 2025
1519687
Update SVE2 intrinsics in sve2.rs with new functions and documentation;
GWTINYC Nov 24, 2025
db681ba
Refactor SVE module: Enhance type conversion utilities and implement …
GWTINYC Nov 24, 2025
394c856
Enhance SVE module: Add predicate generation functions and improve ty…
GWTINYC Nov 24, 2025
a46c8f5
Removed unused features
GWTINYC Nov 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions library/stdarch/crates/core_arch/src/aarch64/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
allow(aarch64_softfloat_neon)
)]

#[unstable(feature = "stdarch_aarch64_sve", issue = "99999999")]
pub mod sve;
#[unstable(feature = "stdarch_aarch64_sve", issue = "99999999")]
pub use self::sve::*;

mod mte;
#[unstable(feature = "stdarch_aarch64_mte", issue = "129010")]
pub use self::mte::*;
Expand Down
Loading