| Age | Commit message (Expand) | Author | Lines |
| 2025-05-28 | When replacing an old value we may not drop it in place | Orson Peters | -12/+8 |
| 2025-05-28 | Add same unsafe bound on get_or_init_slow | Orson Peters | -2/+8 |
| 2025-05-28 | Add comments to diagnostic items | Patrick-6 | -0/+6 |
| 2025-05-28 | Do not panic, maintain old behavior | Orson Peters | -25/+17 |
| 2025-05-28 | Rollup merge of #140697 - Sa4dUs:split-autodiff, r=ZuseZ4 | Trevor Gross | -14/+39 |
| 2025-05-28 | Rollup merge of #140369 - jplatte:mutex-rwlock-data-ptr, r=Amanieu | Trevor Gross | -0/+33 |
| 2025-05-28 | core: unstably expose atomic_compare_exchange so stdarch can use it | Ralf Jung | -1/+4 |
| 2025-05-28 | Make pthread Mutex internals less public | Patrick-6 | -1/+1 |
| 2025-05-28 | Add diagnostic items to sys::Mutex | Patrick-6 | -0/+6 |
| 2025-05-28 | Improve safety comment, double-drop is not relevant here | Orson Peters | -3/+4 |
| 2025-05-28 | Do not move thread-locals before dropping | Orson Peters | -32/+52 |
| 2025-05-28 | Test(fs): Fix test_eq_windows_file_type for Windows 7 | Paul Mabileau | -1/+23 |
| 2025-05-28 | UnsafePinned: also include the effects of UnsafeCell | Ralf Jung | -22/+11 |
| 2025-05-28 | Revert "increase perf of charsearcher for single ascii characters" | Jakub Beránek | -32/+2 |
| 2025-05-28 | Update `CmpResult` to use a pointer-sized return type | Trevor Gross | -26/+48 |
| 2025-05-28 | float: Disable `total_cmp` sNaN tests for `f16` | Trevor Gross | -37/+40 |
| 2025-05-28 | coretests: add abs() and copysign() tests, and remove now-unnecessary ui test | Ralf Jung | -45/+56 |
| 2025-05-28 | coretests: simplify test_float macro to derive more things from the type name | Ralf Jung | -134/+102 |
| 2025-05-28 | Auto merge of #141668 - tgross35:rollup-03gg6lf, r=tgross35 | bors | -0/+60 |
| 2025-05-27 | Rollup merge of #141659 - tkr-sh:map-or-default, r=Amanieu | Trevor Gross | -0/+60 |
| 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 |
| 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 |
| 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 cl... | Madhav Madhusoodanan | -12/+26 |
| 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 |
| 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 |
| 2025-05-27 | Feat: Moved majority of the code to `arm` module. | Madhav Madhusoodanan | -767/+687 |
| 2025-05-27 | Auto merge of #129658 - saethlin:spare-a-crumb, r=jhpratt | bors | -53/+86 |
| 2025-05-27 | Rollup merge of #141312 - cberner:filelock_from, r=joshtriplett | Matthias Krüger | -8/+40 |