| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-07-18 | Merge pull request #1862 from folkertdev/combine-c-files | Amanieu d'Antras | -230/+259 | |
| `intrinsic-test`: combine C files for faster compilation | ||||
| 2025-07-18 | `intrinsic-test`: combine C files for more efficient compilation | Folkert de Vries | -230/+259 | |
| 2025-07-18 | Merge pull request #1878 from ↵ | Folkert de Vries | -12/+19 | |
| madhav-madhusoodanan/intrinsic-test-box-removing-and-more `intrinsic-test`: Implemented DerefMut for ArmIntrinsicTest | ||||
| 2025-07-18 | improve cpp compiler execution | Folkert de Vries | -144/+92 | |
| 2025-07-18 | pass the whole config to C compiler construction | Folkert de Vries | -29/+29 | |
| 2025-07-16 | Implemented DerefMut for ArmIntrinsicTest | Madhav Madhusoodanan | -12/+19 | |
| More details: 1. Moved the return type of IntrinsicType::from_c to Rust<Self, String> from Result<Box<Self>, String> | ||||
| 2025-07-16 | Merge pull request #1875 from sayantn/sde-update | Amanieu d'Antras | -3/+3 | |
| Bump CI versions | ||||
| 2025-07-16 | Bump versions in CI | sayantn | -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-16 | Modified Typekind to group the Signed and Unsigned version of types. | Madhav Madhusoodanan | -31/+72 | |
| 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-07 | some clippy fixes | Marijn Schouten | -3/+3 | |
| 2025-05-31 | intrinsic-test: Reverse `has_constraints()` condition | Tsukasa OI | -1/+1 | |
| It seems it returns true when *no* constraints are found, opposite to the expected behavior of the function name. This commit reverses condition as the name suggests. | ||||
| 2025-05-31 | intrinsic-test: Use `c_prefix` to generate type names | Tsukasa 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-31 | intrinsic-test: Modernization of the coding style | Tsukasa OI | -95/+91 | |
| 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-27 | fix: code cleanup and renaming | Madhav Madhusoodanan | -54/+57 | |
| 2025-05-27 | fix: moved common code (that required no architecture-specific | Madhav Madhusoodanan | -268/+243 | |
| modifications) outside the IntrinsicDefinition trait | ||||
| 2025-05-27 | fix: moved f16 formatting code to common module | Madhav Madhusoodanan | -10/+16 | |
| 2025-05-27 | Fix: removed BaseIntrinsicTypeDefinition + code cleanup | Madhav Madhusoodanan | -152/+49 | |
| 1. Removed default implementation of traits that are compulsorily implemented 2. Replaced BaseIntrinsicTypeDefinition with Deref<Target = IntrinsicType> | ||||
| 2025-05-27 | feat: merging changes related to f16 formatting | Madhav Madhusoodanan | -7/+105 | |
| 2025-05-27 | moved more code generation functionality to `common` | Madhav Madhusoodanan | -286/+301 | |
| 2025-05-27 | fix: aarch64_be issues wthin compilation | Madhav Madhusoodanan | -8/+11 | |
| 2025-05-27 | feat: made constraint common | Madhav Madhusoodanan | -113/+78 | |
| 2025-05-27 | chore: file renaming | Madhav Madhusoodanan | -25/+24 | |
| 2025-05-27 | code cleanup | Madhav Madhusoodanan | -23/+23 | |
| 2025-05-27 | Added dynamic dispatch for easier management of `<arch>ArchitectureTest` structs | Madhav Madhusoodanan | -13/+16 | |
| 2025-05-27 | moved the C compilation commands into a struct for easier handling | Madhav Madhusoodanan | -55/+193 | |
| 2025-05-27 | Removed aarch64-be specific execution command for rust test files | Madhav Madhusoodanan | -23/+8 | |
| 2025-05-27 | renamed `a64_only` data member in `Intrinsic` to `arch_tags` | Madhav Madhusoodanan | -4/+4 | |
| 2025-05-27 | Added a macro to simplify <Arch>IntrinsicType definitions | Madhav Madhusoodanan | -42/+59 | |
| 2025-05-27 | introduced generic types and code refactor | Madhav Madhusoodanan | -640/+808 | |
| 2025-05-27 | Updated `Argument::from_c` to remove `ArgPrep` specific argument | Madhav Madhusoodanan | -7/+31 | |
| 2025-05-27 | added target field within `IntrinsicType` to perform target level checking ↵ | Madhav Madhusoodanan | -12/+26 | |
| cleanly | ||||
| 2025-05-27 | test commit to check if `load_Values_c` can be dissociated from target logic | Madhav Madhusoodanan | -24/+32 | |
| 2025-05-27 | rename struct for naming consistency | Madhav Madhusoodanan | -4/+6 | |
| 2025-05-27 | maintaining special list of targets which need different execution command | Madhav Madhusoodanan | -5/+11 | |
| 2025-05-27 | fixed `too many files open` issue | Madhav Madhusoodanan | -24/+36 | |
| 2025-05-27 | chore: added match block in `src/main.rs` | Madhav Madhusoodanan | -2/+13 | |
| 2025-05-27 | chore: code consolidation | Madhav Madhusoodanan | -162/+145 | |
| 2025-05-27 | chore: separated common logic within file creations, compile_c, compile_rust ↵ | Madhav Madhusoodanan | -397/+501 | |
| and compare_outputs | ||||
| 2025-05-27 | chore: Added `ProcessedCli` to extract the logic to pre-process CLI struct args | Madhav Madhusoodanan | -608/+685 | |
| 2025-05-27 | Chore: Added `SupportedArchitectureTest` trait which must be implemented for ↵ | Madhav Madhusoodanan | -44/+60 | |
| different architectures. Next steps: Move the existing ARM-specific implementation into one that fits well with this trait. | ||||
| 2025-05-27 | Feat: Moved majority of the code to `arm` module. | Madhav Madhusoodanan | -767/+687 | |
| Reasoning: 1. Majority of code assumes the usage of `Intrinsic` and related types, which is derived from the JSON structure of the ARM intrinsics JSON source file 2. Further commits will start with extracting common parts of the code (eg: Create C/Rust file, Build C/Rust file, etc) | ||||
| 2025-05-20 | in `intrinsic-test`, format f16 like C | Folkert de Vries | -1/+102 | |
| 2025-05-03 | change how the test is run | James Barford-Evans | -19/+7 | |
| 2025-05-03 | add printouts for debugging | James Barford-Evans | -3/+10 | |
| 2025-03-05 | feat - FEAT_LUT neon instrinsics | James Barford-Evans | -1/+1 | |
| 2025-03-04 | armV7 does not need faminmax flag | James Barford-Evans | -1/+0 | |
| 2025-03-04 | Add aarch64_unstable_target_feature and relax instruction assertion | James Barford-Evans | -1/+2 | |
| 2025-02-24 | intrinsic-test: Print C++ float16_t in hex | Kajetan Puchalski | -0/+9 | |
| Upstream Rust currently does not support printing f16s in decimal. For the intrinsics tests to work, make C++ print float16_t in the same format. Can be droppen once https://github.com/rust-lang/rust/pull/127013 is merged. | ||||
