about summary refs log tree commit diff
path: root/library/stdarch/crates/intrinsic-test/src/arm
AgeCommit message (Collapse)AuthorLines
2025-09-12intrinsic-test: Make Clippy happyTsukasa OI-1/+1
2025-09-07move target-specific definitions into constantsFolkert de Vries-14/+31
2025-09-07move `build_c_file` and `build_rust_file` into `SupportedArchitectureTest`Folkert de Vries-140/+1
2025-09-07remove `trait IntrinsicDefinition`Folkert de Vries-16/+0
2025-09-07move `print_result_c` into the traitFolkert de Vries-76/+67
2025-09-07move `print_result_c` into the inner intrinsic typeFolkert de Vries-22/+30
2025-09-07move more constants into `SupportedArchitectureTest`Folkert de Vries-25/+40
2025-09-07move platform headers into `SupportedArchitectureTest`Folkert de Vries-2/+3
2025-09-07move `compare_outputs` implementation into `SupportedArchitectureTest` ↵Folkert de Vries-22/+13
definition
2025-08-05use `IntoIterator` for the `add_flags` methodsFolkert de Vries-3/+3
2025-08-05chore: moved chunk_info to `common` and code cleanupMadhav Madhusoodanan-35/+27
2025-08-05feat: cleaned the IntrinsicType struct and associated functions.Madhav Madhusoodanan-20/+26
Changes: 1. Removed `from_c` from the IntrinsicType definition. 2. Moved the `from_c` arm-specific definition to an ArmIntrinsicType-specific impl block
2025-07-27chore: handling the case where --generate-only flag is passedMadhav Madhusoodanan-20/+29
2025-07-27feat: updated Argument<T> type for functional compatibility with otherMadhav Madhusoodanan-3/+23
architectures too
2025-07-19generate arrays of type-erased function pointersFolkert de Vries-19/+0
2025-07-19split rust code into cratesFolkert de Vries-16/+17
so that we get more parallelism out of cargo
2025-07-19combine rust files into one compilationFolkert de Vries-15/+49
2025-07-18Merge pull request #1862 from folkertdev/combine-c-filesAmanieu d'Antras-17/+63
`intrinsic-test`: combine C files for faster compilation
2025-07-18`intrinsic-test`: combine C files for more efficient compilationFolkert de Vries-17/+63
2025-07-18Merge pull request #1878 from ↵Folkert de Vries-10/+15
madhav-madhusoodanan/intrinsic-test-box-removing-and-more `intrinsic-test`: Implemented DerefMut for ArmIntrinsicTest
2025-07-18improve cpp compiler executionFolkert de Vries-47/+25
2025-07-18pass the whole config to C compiler constructionFolkert de Vries-29/+29
2025-07-16Implemented DerefMut for ArmIntrinsicTestMadhav Madhusoodanan-10/+15
More details: 1. Moved the return type of IntrinsicType::from_c to Rust<Self, String> from Result<Box<Self>, String>
2025-07-16Merge pull request #1875 from sayantn/sde-updateAmanieu d'Antras-3/+3
Bump CI versions
2025-07-16Bump versions in CIsayantn-3/+3
- `clang-19` -> `clang-20` in ARM - `gcc-14.2` -> `gcc-14.3` in AArch64-BE - `gcc-14` ->`gcc-15` in LA64 - `riscv-gnu-v2025.01.20` -> `riscv-gnu-v2025.07.03` in Risc-V 32 - `wasmtime-v18.0.2` -> `wasmtime-v34.0.1`
2025-07-16Modified Typekind to group the Signed and Unsigned version of types.Madhav Madhusoodanan-9/+10
2025-07-09run rust programs with the runnerFolkert de Vries-4/+2
2025-05-31intrinsic-test: Use `c_prefix` to generate type namesTsukasa OI-1/+1
To make the type names to test correct, this commit replaces occurrences of `rust_prefix` to `c_prefix` where necessary.
2025-05-31intrinsic-test: Modernization of the coding styleTsukasa OI-20/+25
It modernizes the coding style of the crate intrinsic-test by fixing Clippy warnings. Clippy: rust version 1.89.0-nightly (6f6971078 2025-05-28) Number of Fixed Warnings: 36/36
2025-05-27fix: code cleanup and renamingMadhav Madhusoodanan-6/+6
2025-05-27fix: moved common code (that required no architecture-specificMadhav Madhusoodanan-53/+0
modifications) outside the IntrinsicDefinition trait
2025-05-27fix: moved f16 formatting code to common moduleMadhav Madhusoodanan-10/+1
2025-05-27Fix: removed BaseIntrinsicTypeDefinition + code cleanupMadhav Madhusoodanan-9/+17
1. Removed default implementation of traits that are compulsorily implemented 2. Replaced BaseIntrinsicTypeDefinition with Deref<Target = IntrinsicType>
2025-05-27feat: merging changes related to f16 formattingMadhav Madhusoodanan-3/+92
2025-05-27moved more code generation functionality to `common`Madhav Madhusoodanan-285/+111
2025-05-27fix: aarch64_be issues wthin compilationMadhav Madhusoodanan-1/+1
2025-05-27feat: made constraint commonMadhav Madhusoodanan-87/+44
2025-05-27chore: file renamingMadhav Madhusoodanan-10/+10
2025-05-27code cleanupMadhav Madhusoodanan-19/+19
2025-05-27Added dynamic dispatch for easier management of `<arch>ArchitectureTest` structsMadhav Madhusoodanan-3/+3
2025-05-27moved the C compilation commands into a struct for easier handlingMadhav Madhusoodanan-55/+41
2025-05-27renamed `a64_only` data member in `Intrinsic` to `arch_tags`Madhav Madhusoodanan-2/+2
2025-05-27Added a macro to simplify <Arch>IntrinsicType definitionsMadhav Madhusoodanan-42/+3
2025-05-27introduced generic types and code refactorMadhav Madhusoodanan-830/+305
2025-05-27Updated `Argument::from_c` to remove `ArgPrep` specific argumentMadhav Madhusoodanan-7/+31
2025-05-27added target field within `IntrinsicType` to perform target level checking ↵Madhav Madhusoodanan-12/+26
cleanly
2025-05-27test commit to check if `load_Values_c` can be dissociated from target logicMadhav Madhusoodanan-24/+32
2025-05-27rename struct for naming consistencyMadhav Madhusoodanan-2/+2
2025-05-27fixed `too many files open` issueMadhav Madhusoodanan-15/+22
2025-05-27chore: code consolidationMadhav Madhusoodanan-21/+12