| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-07-14 | Merge pull request #1852 from folkertdev/optimize-intrinsic-test | Amanieu d'Antras | -74/+72 | |
| `intrinsic-test`: use runner also for rust | ||||
| 2025-07-14 | `s390x`: document the different rounding flavors | Folkert de Vries | -3/+14 | |
| 2025-07-12 | `aarch64`: use `simd_reduce_add_unordered` | Folkert de Vries | -217/+58 | |
| 2025-07-12 | `aarch64`: use `simd_reduce_min` and `simd_reduce_max` for integers | Folkert de Vries | -212/+28 | |
| 2025-07-12 | `aarch64`: use `simd_reduce_min` and `simd_reduce_max` for floats | Folkert de Vries | -110/+16 | |
| 2025-07-12 | `arm`: use `simd_fmin` and `simd_fmax` | Folkert de Vries | -100/+12 | |
| 2025-07-12 | `aarch64`: use `simd_fmin` and `simd_fmax` | Folkert de Vries | -43/+6 | |
| 2025-07-12 | `aarch64`: use `f16::min` and `f16::max` | Folkert de Vries | -26/+4 | |
| 2025-07-11 | Merge pull request #1868 from folkertdev/gen-arm-remove-lazy-static | Folkert de Vries | -30/+21 | |
| `stdarch-gen-arm`: remove `lazy_static`, use `LazyLock` instead | ||||
| 2025-07-11 | Merge pull request #1858 from folkertdev/aarch-comparison-operators | Sayantan Chakraborty | -220/+80 | |
| aarch64: use `core::intrinsics::simd` for integer min/max | ||||
| 2025-07-12 | `stdarch-gen-arm`: remove `lazy_static`, use `LazyLock` instead | Folkert de Vries | -30/+21 | |
| 2025-07-11 | Merge pull request #1867 from hkBst/fix-test-neon | Folkert de Vries | -1/+1 | |
| tests: neon is arm | ||||
| 2025-07-11 | tests: neon is arm | Marijn Schouten | -1/+1 | |
| 2025-07-11 | thumbv7neon-unknown-linux-gnueabihf clippy fixes | Marijn Schouten | -113/+38 | |
| 2025-07-10 | Merge pull request #1857 from folkertdev/arm-dup | Sayantan Chakraborty | -67/+44 | |
| use `splat` for the aarch64/arm dup intrinsics | ||||
| 2025-07-10 | use `intrinsics::simd` for integer max/min | Folkert de Vries | -220/+80 | |
| 2025-07-10 | use `splat` for the aarch64/arm dup intrinsics | Folkert de Vries | -67/+44 | |
| 2025-07-09 | run rust programs with the runner | Folkert de Vries | -74/+69 | |
| 2025-07-08 | add extra log messages to track setup | Folkert de Vries | -0/+3 | |
| 2025-07-08 | remove unneeded cast | Folkert de Vries | -4/+4 | |
| 2025-07-08 | shorten array literals | Folkert de Vries | -104/+28 | |
| 2025-07-08 | remote intermediate assignment | Folkert de Vries | -51/+23 | |
| 2025-07-08 | fix whitespace in `aarch64.spec.yml` | Folkert de Vries | -27/+27 | |
| 2025-07-07 | Use `simd_funnel_sh{l,r}` and `simd_round_ties_even` to remove uses of LLVM ↵ | sayantn | -163/+47 | |
| intrinsics | ||||
| 2025-07-07 | some clippy fixes | Marijn Schouten | -14/+12 | |
| 2025-07-07 | std_detect: RISC-V Linux: Ergonomic querying with `riscv_hwprobe` | Tsukasa OI | -41/+42 | |
| Originally, we used an array of `riscv_hwprobe` directly and indexed using raw numbers, making correspondence between the index and the query key less obvious. We also frequently used `out[idx].key != -1` to test whether the key is supported by the `riscv_hwprobe` system call (on the Linux kernel version we are testing) but we'd better to integrate with an operation to retrieve the value. This commit improves the ergonomics of feature querying by: 1. Utilizing macros to a. enable indexing by identifier names and b. encapsulate accesses to the `riscv_hwprobe` array to query and 2. New method `riscv_hwprobe::get()` returning `Option<u64>`, integrating availability checking and value retrieval. It also removes `has_ima` for now because it's redundant if we only need to test for single base behavior. | ||||
| 2025-07-07 | Update README.md | kilavvy | -1/+1 | |
| - Update ui.md - Update type-alias-impl-trait.md - Update README.md | ||||
| 2025-07-07 | Remove std-detect dev dependency in core_arch | Jakub Beránek | -5/+2 | |
| 2025-07-07 | Mark `avx` broadcast intrinsics as safe | okaneco | -7/+7 | |
| 2025-07-07 | Use simd_extract! macro instead of calling simd_extract directly | ltdk | -6/+6 | |
| 2025-07-07 | Update stabilization version of certain x86 intrinsics to 1.89 | Amanieu d'Antras | -27/+27 | |
| These were left as `CURRENT_RUSTC_VERSION` in the submodule. | ||||
| 2025-07-07 | use `is_multiple_of` to check if an addr is aligned | Folkert de Vries | -4/+8 | |
| 2025-07-03 | std_detect: Tidying of slice length | Tsukasa OI | -2/+1 | |
| We don't need to put the length of the `riscv_hwprobe` array into a variable. This commit removes that variable and gives the length of the output slice to the `__riscv_hwprobe` directly. | ||||
| 2025-06-28 | loongarch: Add basic support for LoongArch32 | WANG Rui | -247/+327 | |
| 2025-06-19 | s390x: add feature detection for the z17 target features | Folkert de Vries | -56/+97 | |
| 2025-06-19 | the `generic_arg_infer` feature is now stable on nightly | Folkert de Vries | -1/+0 | |
| 2025-06-17 | Test | satiscugcat | -17/+14 | |
| 2025-06-17 | Ran cargo fmt, removed unexpected character | satiscugcat | -28/+25 | |
| 2025-06-17 | Moved const fn outside unsafe block | satiscugcat | -11/+13 | |
| 2025-06-17 | Changed implementation of _mm{256,512}_alignr_epi8 to match that of ↵ | satiscugcat | -350/+149 | |
| _mm_alignr_epi8 in ssse3.rs, also removed the import of the unreachable unchecked hint as it was no longer necessary | ||||
| 2025-06-17 | Changed implementation of bsrli in avx512.rs to match that of bslli, fixing ↵ | satiscugcat | -195/+78 | |
| a bug in the process. | ||||
| 2025-06-17 | Changed the implementation of bsrli to match bslli in avx2 intrinsics | satiscugcat | -132/+46 | |
| 2025-06-17 | Fixing mistake in previous commit | Aniket Mishra | -1/+1 | |
| 2025-06-17 | Removal of redundant mod operation in _mm256_alignr_epi8 | Aniket Mishra | -1/+1 | |
| 2025-06-17 | Fix in erroneous implementation of _mm256_bsrli_epi128 | Aniket Mishra | -1/+1 | |
| Fixing the issue mentioned in issue #1822 of rust-lang/stdarch. | ||||
| 2025-06-11 | Fixes to compile with latest Rust nightly | Amanieu d'Antras | -5/+3 | |
| 2025-06-09 | Darwin AArch64 detection update | Laine Taffin Altman | -0/+8 | |
| Synchronizes the lists of detectable features with macOS 15.5 “Sequoia” as of June 9, 2025. | ||||
| 2025-06-09 | Remove `compiler-builtins` from `rustc-dep-of-std` dependencies | Trevor Gross | -2/+0 | |
| Since [1], this will come automatically from `rustc-std-workspace-core` and the crates.io dependency should no longer be specified. [1]: https://github.com/rust-lang/rust/pull/141993 | ||||
| 2025-06-09 | add s390x z17 target features | Folkert de Vries | -0/+15 | |
| 2025-06-02 | Stabilize AVX512 intrinsics | Amanieu d'Antras | -4593/+4593 | |
| FCP completed in tracking issue rust-lang/rust#111137 | ||||
