| Age | Commit message (Expand) | Author | Lines |
| 2023-08-06 | simplify handling of valtrees for unsized types | Ralf Jung | -11/+15 |
| 2023-08-06 | Rollup merge of #114505 - ouz-a:cleanup_mir, r=RalfJung | Matthias Krüger | -1/+1 |
| 2023-08-06 | cleanup misinformation regarding has_deref | ouz-a | -1/+1 |
| 2023-08-06 | interpret: use ConstPropNonsense for more const-prop induced issues | Ralf Jung | -4/+5 |
| 2023-08-04 | interpret: add mplace_to_ref helper method | Ralf Jung | -6/+14 |
| 2023-08-03 | Rollup merge of #114372 - RalfJung:const-pointer-as-int, r=oli-obk | Matthias Krüger | -45/+57 |
| 2023-08-03 | Rollup merge of #114363 - RalfJung:interpret-not-miri, r=jackh726 | Matthias Krüger | -2/+2 |
| 2023-08-02 | const validation: point at where we found a pointer but expected an integer | Ralf Jung | -45/+57 |
| 2023-08-02 | avoid 'miri' when refering to the shared interpreter | Ralf Jung | -2/+2 |
| 2023-08-02 | Auto merge of #114333 - RalfJung:dangling-ptr-offset, r=oli-obk | bors | -19/+24 |
| 2023-08-01 | properly track why we checked whether a pointer is in-bounds | Ralf Jung | -10/+16 |
| 2023-08-01 | rename deref_operand → deref_pointer and some Miri helper functions | Ralf Jung | -9/+8 |
| 2023-07-31 | fix alignment handling for Repeat expressions | Ralf Jung | -4/+4 |
| 2023-07-27 | Remove `constness` from `ParamEnv` | Deadbeef | -5/+2 |
| 2023-07-27 | Rollup merge of #114075 - matthiaskrgr:fmt_args_rustc_3, r=wesleywiser | Matthias Krüger | -28/+20 |
| 2023-07-25 | inline format!() args from rustc_codegen_llvm to the end (4) | Matthias Krüger | -28/+20 |
| 2023-07-25 | make MPlaceTy non-Copy | Ralf Jung | -10/+10 |
| 2023-07-25 | interpret: make read functions generic over operand type | Ralf Jung | -77/+79 |
| 2023-07-25 | interpret: make write functions generic over the place type | Ralf Jung | -135/+165 |
| 2023-07-25 | add some sanity checks in write_immediate_no_validate | Ralf Jung | -3/+28 |
| 2023-07-25 | interpret: read_discriminant: only return VariantIdx | Ralf Jung | -33/+47 |
| 2023-07-25 | interpret: refactor projection code to work on a common trait, and use that f... | Ralf Jung | -1049/+660 |
| 2023-07-24 | interpret: support projecting into Place::Local without force_allocation | Ralf Jung | -247/+402 |
| 2023-07-21 | Revert "Auto merge of #113166 - moulins:ref-niches-initial, r=oli-obk" | David Tolnay | -66/+64 |
| 2023-07-21 | Auto merge of #113892 - RalfJung:uninit-undef-poison, r=wesleywiser | bors | -1/+1 |
| 2023-07-21 | CTFE: move `target_{i, u}size_{min, max)` to `rustc_abi::TargetDataLayout` | Moulins | -7/+6 |
| 2023-07-21 | support non-null pointer niches in CTFE | Moulins | -58/+61 |
| 2023-07-20 | clarify MIR uninit vs LLVM undef/poison | Ralf Jung | -1/+1 |
| 2023-07-16 | Refactor checking function target features during const-eval | Eduardo Sánchez Muñoz | -18/+29 |
| 2023-07-16 | miri: fail when calling a function that requires an unavailable target feature | Eduardo Sánchez Muñoz | -0/+19 |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -37/+35 |
| 2023-07-12 | Re-format let-else per rustfmt update | Mark Rousskov | -17/+36 |
| 2023-07-11 | fix handling of alignment for dyn-sized places | Ralf Jung | -4/+6 |
| 2023-07-11 | miri: protect Move() function arguments during the call | Ralf Jung | -59/+173 |
| 2023-07-08 | Auto merge of #113376 - Nilstrieb:pointer-coercions-are-not-casts-because-tha... | bors | -14/+15 |
| 2023-07-07 | Rename `adjustment::PointerCast` and variants using it to `PointerCoercion` | Nilstrieb | -14/+15 |
| 2023-07-07 | miri: check that assignments do not self-overlap | Ralf Jung | -1/+6 |
| 2023-07-06 | Auto merge of #113377 - BoxyUwU:move_ty_ctors_to_ty, r=compiler-errors | bors | -7/+12 |
| 2023-07-05 | Move `TyCtxt::mk_x` to `Ty::new_x` where applicable | Boxy | -7/+12 |
| 2023-07-05 | Remove a function argument that is always passed with the same value. | Oli Scherer | -1/+1 |
| 2023-07-05 | Specialize `try_destructure_mir_constant` for its sole user | Oli Scherer | -1/+1 |
| 2023-07-01 | Put `LayoutError` behind reference to shrink result | Nilstrieb | -1/+1 |
| 2023-06-19 | Rollup merge of #112232 - fee1-dead-contrib:match-eq-const-msg, r=b-naber | Michael Goulet | -1/+1 |
| 2023-06-19 | Dedup some type checks in the MIR validator | Scott McMurray | -26/+4 |
| 2023-06-19 | Remove unchecked_add/sub/mul/shl/shr from CTFE/cg_ssa/cg_clif | Scott McMurray | -31/+0 |
| 2023-06-19 | Promote unchecked_add/sub/mul/shl/shr to mir::BinOp | Scott McMurray | -25/+49 |
| 2023-06-18 | Better error for non const `PartialEq` call generated by `match` | Deadbeef | -1/+1 |
| 2023-06-04 | Use 128 bits for TypeId hash | Thom Chiovoloni | -2/+2 |
| 2023-06-02 | Rollup merge of #112168 - scottmcm:lower-div-rem-unchecked-to-mir, r=oli-obk | Michael Goulet | -5/+1 |
| 2023-06-01 | Use translatable diagnostics in `rustc_const_eval` | Deadbeef | -228/+260 |