| Age | Commit message (Expand) | Author | Lines |
| 2024-06-05 | Don't walk the bodies of free constants for reachability. | Oli Scherer | -3/+23 |
| 2024-05-27 | miri: avoid making a full copy of all new allocations | Ralf Jung | -22/+21 |
| 2024-05-27 | Auto merge of #125410 - fmease:adj-lint-diag-api, r=nnethercote | bors | -2/+1 |
| 2024-05-23 | Auto merge of #125434 - nnethercote:rm-more-extern-tracing, r=jackh726 | bors | -3/+5 |
| 2024-05-23 | Allow const eval failures if the cause is a type layout issue | Oli Scherer | -0/+3 |
| 2024-05-23 | Remove `#[macro_use] extern crate tracing` from `rustc_middle`. | Nicholas Nethercote | -3/+5 |
| 2024-05-23 | Remove `LintDiagnostic::msg` | León Orell Valerian Liehr | -2/+1 |
| 2024-05-21 | interpret: make overflowing binops just normal binops | Ralf Jung | -6/+13 |
| 2024-05-13 | interpret: move error macros into error.rs | Ralf Jung | -132/+126 |
| 2024-05-13 | Remove `extern crate rustc_middle` from `rustc_const_eval`. | Nicholas Nethercote | -11/+27 |
| 2024-05-09 | Remove `TinyList`. | Nicholas Nethercote | -9/+8 |
| 2024-05-03 | remove trait bounds on AllocBytes | Strophox | -3/+1 |
| 2024-05-03 | Cow::from(&*...) changed to Cow::Owned(Vec::from(...)) | Strophox | -1/+1 |
| 2024-05-03 | generalize adjust_from_tcx | Strophox | -4/+4 |
| 2024-04-29 | Remove `extern crate rustc_data_structures` from numerous crates. | Nicholas Nethercote | -2/+3 |
| 2024-04-29 | Remove `extern crate rustc_macros` from `rustc_middle`. | Nicholas Nethercote | -4/+7 |
| 2024-04-21 | Miri: detect wrong vtables in wide pointers | Ralf Jung | -21/+78 |
| 2024-04-19 | Auto merge of #124113 - RalfJung:interpret-scalar-ops, r=oli-obk | bors | -11/+13 |
| 2024-04-19 | ScalarInt: add methods to assert being a (u)int of given size | Ralf Jung | -2/+2 |
| 2024-04-18 | interpret/binary_int_op: avoid dropping to raw ints until we determined the sign | Ralf Jung | -10/+12 |
| 2024-04-18 | Simplify `static_assert_size`s. | Nicholas Nethercote | -2/+2 |
| 2024-04-03 | Check `x86_64` size assertions on `aarch64`, too | Zalathar | -2/+2 |
| 2024-03-26 | Auto merge of #111769 - saethlin:ctfe-backtrace-ctrlc, r=RalfJung | bors | -0/+2 |
| 2024-03-22 | Rollup merge of #122537 - RalfJung:interpret-allocation, r=oli-obk | Matthias Krüger | -11/+31 |
| 2024-03-20 | Rollup merge of #121543 - onur-ozkan:clippy-args, r=oli-obk | Matthias Krüger | -2/+2 |
| 2024-03-20 | resolve clippy errors | onur-ozkan | -2/+2 |
| 2024-03-18 | Avoid various uses of `Option<Span>` in favor of using `DUMMY_SP` in the few ... | Oli Scherer | -8/+8 |
| 2024-03-17 | Print a backtrace in const eval if interrupted | Ben Kimock | -0/+2 |
| 2024-03-15 | interpret/allocation: fix aliasing issue in interpreter and refactor getters ... | Ralf Jung | -11/+31 |
| 2024-03-14 | Add compiler support for parsing `f16` and `f128` | Trevor Gross | -1/+21 |
| 2024-03-12 | Ensure nested allocations in statics do not get deduplicated | Oli Scherer | -1/+11 |
| 2024-03-11 | Rename `IntoDiagnosticArg` as `IntoDiagArg`. | Nicholas Nethercote | -10/+10 |
| 2024-03-05 | Rename `DiagnosticMessage` as `DiagMessage`. | Nicholas Nethercote | -4/+2 |
| 2024-02-29 | Rollup merge of #121782 - RalfJung:mutable-ref-in-static, r=oli-obk | Matthias Krüger | -1/+0 |
| 2024-02-29 | allow statics pointing to mutable statics | Ralf Jung | -1/+0 |
| 2024-02-28 | Auto merge of #121489 - nnethercote:diag-renaming, r=davidtwco | bors | -8/+8 |
| 2024-02-28 | Rename `DiagnosticArg{,Map,Name,Value}` as `DiagArg{,Map,Name,Value}`. | Nicholas Nethercote | -8/+8 |
| 2024-02-27 | Split rustc_type_ir to avoid rustc_ast from depending on it | Oli Scherer | -1/+1 |
| 2024-02-16 | Rollup merge of #121179 - RalfJung:zst-mutable-refs, r=oli-obk | Guillaume Gomez | -4/+5 |
| 2024-02-16 | allow mutable references in const values when they point to no memory | Ralf Jung | -4/+5 |
| 2024-02-16 | Auto merge of #120486 - reitermarkus:use-generic-nonzero, r=dtolnay | bors | -7/+7 |
| 2024-02-15 | Return ConstAllocation from eval_static_initializer query directly | Oli Scherer | -34/+3 |
| 2024-02-15 | Add new query just for static initializers | Oli Scherer | -26/+10 |
| 2024-02-15 | Replace `NonZero::<_>::new` with `NonZero::new`. | Markus Reiter | -2/+2 |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -7/+7 |
| 2024-02-12 | Dejargnonize subst | Shoyu Vanilla | -9/+9 |
| 2024-02-11 | Rollup merge of #120883 - RalfJung:extern-static-err, r=oli-obk | Matthias Krüger | -1/+1 |
| 2024-02-11 | Rollup merge of #120882 - RalfJung:set-discriminant, r=compiler-errors | Matthias Krüger | -0/+2 |
| 2024-02-10 | detect consts that reference extern statics | Ralf Jung | -0/+1 |
| 2024-02-10 | validation: descend from consts into statics | Ralf Jung | -0/+1 |