| Age | Commit message (Expand) | Author | Lines |
| 2025-06-22 | centralize `-Zmin-function-alignment` logic | Folkert de Vries | -6/+1 |
| 2025-06-20 | Ensure copy* intrinsics also perform the static self-init checks | Oli Scherer | -1/+6 |
| 2025-06-13 | Rollup merge of #142405 - oli-obk:type-once, r=RalfJung | Jubilee | -7/+7 |
| 2025-06-12 | intrinsics: rename min_align_of to align_of | Ralf Jung | -2/+2 |
| 2025-06-12 | Don't hardcode the intrinsic return types twice in the compiler | Oli Scherer | -7/+7 |
| 2025-06-11 | Fix enter_trace_span!() using wrong $crate paths | Stypox | -2/+2 |
| 2025-06-10 | const_eval: fix some outdated comments | Ralf Jung | -8/+7 |
| 2025-06-08 | Remove rustc's notion of "preferred" alignment AKA `__alignof` | Jubilee Young | -13/+2 |
| 2025-06-06 | Rollup merge of #142103 - scottmcm:fieldidx-in-interp, r=oli-obk | Guillaume Gomez | -30/+33 |
| 2025-06-05 | Update `InterpCx::project_field` to take `FieldIdx` | Scott McMurray | -30/+33 |
| 2025-06-05 | Replace some `Option<Span>` with `Span` and use DUMMY_SP instead of None | Oli Scherer | -1/+2 |
| 2025-06-03 | Change `tag_field` to `FieldIdx` in `Variants::Multiple` | Scott McMurray | -5/+5 |
| 2025-05-31 | Add const support for float rounding methods | Ruan Comelli | -0/+113 |
| 2025-05-27 | Rollup merge of #141582 - RalfJung:cleanup, r=bjorn3 | Michael Goulet | -1/+1 |
| 2025-05-27 | Rollup merge of #141513 - nia-e:allocbytes-extend, r=RalfJung | 许杰友 Jieyou Xu (Joe) | -5/+11 |
| 2025-05-26 | extend allocbytes with associated type | Nia Espera | -5/+11 |
| 2025-05-24 | ScalarInt: support conversion with signed int types and cmp::Ordering | Ralf Jung | -1/+1 |
| 2025-05-22 | interpret: do not force_allocate all return places | Ralf Jung | -82/+72 |
| 2025-05-20 | Rollup merge of #140972 - Stypox:machine-tracing-flag, r=RalfJung | Matthias Krüger | -0/+25 |
| 2025-05-20 | Add enter_trace_span!() that checks if tracing is enabled | Stypox | -0/+19 |
| 2025-05-17 | Rollup merge of #135808 - tiif:conv_display, r=workingjubilee | Matthias Krüger | -2/+2 |
| 2025-05-13 | Add TRACING_ENABLED to Machine trait | Stypox | -0/+6 |
| 2025-05-09 | Use intrinsics for `{f16,f32,f64,f128}::{minimum,maximum}` operations | Urgau | -0/+42 |
| 2025-05-05 | Auto merge of #140453 - Zoxc:next-disambiguator, r=oli-obk | bors | -8/+27 |
| 2025-05-02 | Rollup merge of #140521 - RalfJung:oob-error, r=saethlin | Matthias Krüger | -12/+16 |
| 2025-05-02 | Move `DisambiguatorState` into `intern_const_alloc_recursive` | John Kåre Alsaker | -14/+28 |
| 2025-05-02 | Add `DefPathData::NestedStatic` instead of reusing `DefPathData::AnonConst` | John Kåre Alsaker | -4/+3 |
| 2025-04-30 | interpret: better error message for out-of-bounds pointer arithmetic and acce... | Ralf Jung | -12/+16 |
| 2025-04-30 | Rollup merge of #140439 - RalfJung:miri-algebraic-float-nondet, r=oli-obk | Matthias Krüger | -2/+9 |
| 2025-04-29 | Rollup merge of #139909 - oli-obk:or-patterns, r=BoxyUwU | Trevor Gross | -5/+18 |
| 2025-04-29 | Remove global `next_disambiguator` state and handle it with a `DisambiguatorS... | John Kåre Alsaker | -7/+13 |
| 2025-04-29 | miri: algebraic intrinsics: bring back float non-determinism | Ralf Jung | -2/+9 |
| 2025-04-28 | AsyncDrop implementation using shim codegen of async_drop_in_place::{closure}... | Andrew Zhogin | -1/+7 |
| 2025-04-28 | Add or-patterns to pattern types | Oli Scherer | -5/+18 |
| 2025-04-24 | Rollup merge of #140172 - bjoernager:const-float-algebraic, r=RalfJung | Matthias Krüger | -0/+25 |
| 2025-04-23 | Make algebraic intrinsics into 'const fn' items; Make algebraic functions of ... | Gabriel Bjørnager Jensen | -0/+25 |
| 2025-04-22 | add comment for "Other" case | Ralf Jung | -0/+1 |
| 2025-04-20 | respect `repr(align(N))` on functions in miri | Folkert de Vries | -2/+14 |
| 2025-04-17 | Rollup merge of #139974 - Patrick-6:change-visibility, r=RalfJung | Matthias Krüger | -4/+2 |
| 2025-04-17 | Change function visibility to pub | Patrick-6 | -4/+2 |
| 2025-04-17 | `intern_with_temp_alloc` is for `DummyMachine` only. | Nicholas Nethercote | -2/+6 |
| 2025-04-01 | interpret: add a version of run_for_validation for &self | Ralf Jung | -12/+33 |
| 2025-03-20 | interpret memory access hooks: also pass through the Pointer used for the access | Ralf Jung | -1/+21 |
| 2025-03-15 | Stop relying on rustc_type_ir in non-type-system crates | Michael Goulet | -19/+14 |
| 2025-03-12 | minor interpret cleanups | Ralf Jung | -41/+25 |
| 2025-03-12 | impl Display for Conv | tiif | -2/+2 |
| 2025-03-11 | miri native_calls: ensure we actually expose *mutable* provenance to the memo... | Ralf Jung | -0/+4 |
| 2025-03-07 | Pass `Option<Symbol>` to `def_path_data`/`create_def` methods. | Nicholas Nethercote | -1/+1 |
| 2025-03-06 | Rollup merge of #137802 - RalfJung:miri-native-call-exposed, r=oli-obk | Michael Goulet | -10/+5 |
| 2025-03-01 | Rollup merge of #137804 - RalfJung:backend-repr-simd-vector, r=workingjubilee | Matthias Krüger | -1/+1 |