| Age | Commit message (Expand) | Author | Lines |
| 2024-06-20 | More GVN for PtrMetadata | Scott McMurray | -1/+1 |
| 2024-06-19 | `bug!` more uses of these in runtime stuff | Scott McMurray | -3/+1 |
| 2024-06-19 | Rollup merge of #126154 - RalfJung:storage-live, r=compiler-errors | León Orell Valerian Liehr | -5/+3 |
| 2024-06-19 | Rollup merge of #126493 - jswrenn:fix-126460, r=compiler-errors | 许杰友 Jieyou Xu (Joe) | -1/+10 |
| 2024-06-18 | Use a dedicated type instead of a reference for the diagnostic context | Oli Scherer | -2/+2 |
| 2024-06-16 | Rename InstanceDef -> InstanceKind | Michael Goulet | -21/+21 |
| 2024-06-15 | Auto merge of #126518 - matthiaskrgr:rollup-wb70rzq, r=matthiaskrgr | bors | -6/+15 |
| 2024-06-15 | Rollup merge of #126429 - tgross35:f16-f128-const-eval, r=RalfJung | Matthias Krüger | -6/+15 |
| 2024-06-15 | Rollup merge of #126469 - RalfJung:mir-shifts, r=scottmcm | Matthias Krüger | -12/+7 |
| 2024-06-14 | safe transmute: support non-ZST, variantful, uninhabited enums | Jack Wrenn | -1/+10 |
| 2024-06-14 | Make the unary operator `FloatTy` check exhaustive | Trevor Gross | -6/+9 |
| 2024-06-14 | Enable const evaluation for `f16` and `f128` | Trevor Gross | -2/+8 |
| 2024-06-14 | Rollup merge of #126426 - RalfJung:dangling-zst-ice, r=oli-obk | Matthias Krüger | -5/+11 |
| 2024-06-14 | MIR Shl/Shr: the offset can be computed with rem_euclid | Ralf Jung | -12/+7 |
| 2024-06-14 | const validation: fix ICE on dangling ZST reference | Ralf Jung | -5/+11 |
| 2024-06-13 | const-eval: make lint scope computation consistent | Ralf Jung | -17/+10 |
| 2024-06-13 | rename CompileTimeInterpreter -> CompileTimeMachine, CompileTimeEvalContext -... | Ralf Jung | -4/+4 |
| 2024-06-13 | Rollup merge of #126379 - RalfJung:find_closest_untracked_caller_location, r=... | León Orell Valerian Liehr | -3/+7 |
| 2024-06-13 | interpret: update doc comment for find_closest_untracked_caller_location | Ralf Jung | -3/+7 |
| 2024-06-12 | Rollup merge of #126358 - jswrenn:fix-125811, r=compiler-errors | Jubilee | -4/+1 |
| 2024-06-12 | Rollup merge of #126328 - RalfJung:is_none_or, r=workingjubilee | Jubilee | -3/+3 |
| 2024-06-13 | safe transmute: support `Variants::Single` enums | Jack Wrenn | -4/+1 |
| 2024-06-12 | use is_none_or in some places in the compiler | Ralf Jung | -3/+3 |
| 2024-06-12 | Rollup merge of #126232 - RalfJung:dyn-trait-equality, r=oli-obk | Guillaume Gomez | -116/+129 |
| 2024-06-11 | interpret: ensure we check bool/char for validity when they are used in a cast | Ralf Jung | -26/+29 |
| 2024-06-11 | interpret: dyn trait metadata check: equate traits in a proper way | Ralf Jung | -4/+36 |
| 2024-06-11 | check for correct trait in size_and_align_of | Ralf Jung | -5/+8 |
| 2024-06-10 | Rollup merge of #126184 - RalfJung:interpret-simd-nonpow2, r=oli-obk | Matthias Krüger | -6/+9 |
| 2024-06-10 | interpret: refactor dyn trait handling | Ralf Jung | -112/+90 |
| 2024-06-10 | ScalarInt: size mismatches are a bug, do not delay the panic | Ralf Jung | -25/+23 |
| 2024-06-09 | interpret: do not ICE on padded non-pow2 SIMD vectors | Ralf Jung | -6/+9 |
| 2024-06-08 | offset_of: allow (unstably) taking the offset of slice tail fields | Ralf Jung | -1/+4 |
| 2024-06-08 | StorageLive: refresh storage (instead of UB) when local is already live | Ralf Jung | -5/+3 |
| 2024-06-06 | Auto merge of #124482 - spastorino:unsafe-extern-blocks, r=oli-obk | bors | -2/+4 |
| 2024-06-05 | Update the interpreter to handle the new cases | Ben Kimock | -9/+22 |
| 2024-06-04 | Add safe/unsafe to static inside extern blocks | Santiago Pastorino | -2/+4 |
| 2024-06-01 | Uplift TypeRelation and Relate | Michael Goulet | -1/+1 |
| 2024-05-29 | Rollup merge of #125633 - RalfJung:miri-no-copy, r=saethlin | 许杰友 Jieyou Xu (Joe) | -24/+50 |
| 2024-05-28 | Add an intrinsic for `ptr::metadata` | Scott McMurray | -5/+25 |
| 2024-05-27 | miri: avoid making a full copy of all new allocations | Ralf Jung | -24/+50 |
| 2024-05-27 | interpret: get rid of 'mir lifetime everywhere | Ralf Jung | -191/+162 |
| 2024-05-27 | interpret: the MIR is actually at lifetime 'tcx | Ralf Jung | -23/+21 |
| 2024-05-23 | Auto merge of #125434 - nnethercote:rm-more-extern-tracing, r=jackh726 | bors | -0/+18 |
| 2024-05-23 | Allow const eval failures if the cause is a type layout issue | Oli Scherer | -3/+14 |
| 2024-05-23 | Remove `#[macro_use] extern crate tracing` from `rustc_const_eval`. | Nicholas Nethercote | -0/+18 |
| 2024-05-23 | Auto merge of #125359 - RalfJung:interpret-overflowing-ops, r=oli-obk | bors | -187/+126 |
| 2024-05-22 | Auto merge of #117329 - RalfJung:offset-by-zero, r=oli-obk,scottmcm | bors | -22/+30 |
| 2024-05-22 | clarify comment | Ralf Jung | -1/+3 |
| 2024-05-21 | improve comment wording | Ralf Jung | -1/+2 |
| 2024-05-21 | interpret: make overflowing binops just normal binops | Ralf Jung | -186/+123 |