about summary refs log tree commit diff
path: root/library/stdarch/crates
AgeCommit message (Expand)AuthorLines
2024-01-16Add CPU detection for macOS/aarch64.Makoto Kato-0/+133
2024-01-15Rename vec_splat_i* to the correct nameLuca Barbato-6/+6
2024-01-10Add missing ARM-v7A CRC intrinsics (#1515)eupn-57/+74
2024-01-06Add vec_xstLuca Barbato-0/+77
2024-01-05Fix std_detect not being an unstable crateAmanieu d'Antras-4/+18
2024-01-04Fix std build failure on non-x86 architecturesAmanieu d'Antras-1/+7
2024-01-02Fixes for use in the standard libraryAmanieu d'Antras-6/+4
2023-12-19Add `#![allow(internal_features)]` to a test to fix CIAmanieu d'Antras-0/+1
2023-11-30Stabilize Ratified RISC-V Target FeaturesGijs Burghoorn-64/+51
2023-11-30Revert "Work around CI failures for the ARM target"Amanieu d'Antras-26/+21
2023-11-30Report missing features when skipping tests.Jacob Bramley-11/+17
2023-11-30Work around CI failures for the ARM targetAmanieu d'Antras-21/+26
2023-11-18Re-implement some AVX functions without LLVM intrinsicsEduardo Sánchez Muñoz-12/+4
2023-11-18Use char constants for single-character patternsEduardo Sánchez Muñoz-31/+31
2023-11-18Silence `clippy::if_same_then_else` in a specific locationEduardo Sánchez Muñoz-0/+1
2023-11-18Use `str::strip_prefix` instead of `str::starts_with` + manual stripEduardo Sánchez Muñoz-38/+37
2023-11-18Use `is_empty` instead of comparing `len` to zeroEduardo Sánchez Muñoz-4/+4
2023-11-18Remove unneeded borrowsEduardo Sánchez Muñoz-17/+17
2023-11-17Improve intrinsic-test output formatting.Jacob Bramley-63/+132
2023-11-17Add --generate-only to intrinsic-test.Jacob Bramley-12/+34
2023-11-16do not use const stability attribute when we don't even need to call the intr...Ralf Jung-1/+0
2023-11-16Fix copy-paste typos for the _x2 and _x3 vector typesJake Goulding-12/+12
2023-11-05riscv: remove intrinsics that cannot be used from RustRalf Jung-89/+25
2023-11-01Fix intrinsic-test author handling.Jacob Bramley-3/+6
2023-11-01Clean up intrinsic-test literals.Jacob Bramley-24/+33
2023-11-01Remove unnecessary unsafety in intrinsic tests.Jacob Bramley-64/+79
2023-10-31Avoid unneeded transmutes in generated ARM testsEduardo Sánchez Muñoz-463/+475
2023-10-31Reduce code that handles number of parameters in stdarch-gen `gen_test`Eduardo Sánchez Muñoz-58/+24
2023-10-31Remove unneeded transmutes in ARM code, except generated testsEduardo Sánchez Muñoz-236/+166
2023-10-31std_detect: Add support for LoongArchZHAI Xiang-2/+96
2023-10-31Refactor some loops to avoid indexingEduardo Sánchez Muñoz-211/+48
2023-10-31Simplify some expressions with pointers and referencesEduardo Sánchez Muñoz-12/+12
2023-10-31Avoid constans that are too close to `PI` or `TAU`Eduardo Sánchez Muñoz-8/+8
2023-10-31Fuse multiple `str::replace` invocations into a single oneEduardo Sánchez Muñoz-3/+1
2023-10-31Convert `while` loop to `for`Eduardo Sánchez Muñoz-1/+1
2023-10-31Derive `Default` for `Initializer` in std_detectEduardo Sánchez Muñoz-8/+3
2023-10-31Simplify a `cfg`Eduardo Sánchez Muñoz-2/+2
2023-10-31Do not deny `clippy::missing_inline_in_public_items` in std_detectEduardo Sánchez Muñoz-1/+0
2023-10-31Replace some `x >= LO && x <= HI` with `matches!(x, LO..=HI)`Eduardo Sánchez Muñoz-5/+5
2023-10-31Change `x <= y - 1` to `x < y` in `static_assert_{u,s}imm_bits`Eduardo Sánchez Muñoz-2/+2
2023-10-31Silence four additional clippy warnings and sort them alphabeticallyEduardo Sánchez Muñoz-2/+6
2023-10-31Drop old link from intrinsic-test README.Jacob Bramley-4/+0
2023-10-30Add `#[cfg_attr(miri, ignore)]` to tests of functions that cannot be supporte...Eduardo Sánchez Muñoz-0/+27
2023-10-30Improve _mm_round_ss/_mm_round_sd testsEduardo Sánchez Muñoz-10/+38
2023-10-30Extend _mm_minpos_epu16 test to check case where minimum value is repeatedEduardo Sánchez Muñoz-0/+9
2023-10-30Extend _mm_insert_ps test to check zeroing priority over copyingEduardo Sánchez Muñoz-0/+7
2023-10-30Extend _mm_mulhrs_epi16 test to check large valuesEduardo Sánchez Muñoz-0/+7
2023-10-30Extend _mm_maddubs_epi16 test to check widening and saturating behaviorEduardo Sánchez Muñoz-0/+21
2023-10-30Extend SSSE3 hadd/hsub tests to check overflow behavior (wrapping or saturating)Eduardo Sánchez Muñoz-0/+78
2023-10-30Extend _mm_shuffle_epi8 test to check index wrappingEduardo Sánchez Muñoz-0/+5